14 lines
242 B
Ruby
14 lines
242 B
Ruby
# -*- coding: utf-8 -*-
|
|
require 'spec_helper'
|
|
|
|
describe StatCounter do
|
|
|
|
before(:each) do
|
|
@work = FactoryBot.create(:work)
|
|
end
|
|
|
|
it "should be created for a new work" do
|
|
expect(@work.stat_counter.nil?).not_to be_truthy
|
|
end
|
|
|
|
end
|