otwarchive-sunsetarchive/spec/models/stat_counter_spec.rb
2026-03-17 01:16:49 -04:00

14 lines
242 B
Ruby
Executable file

# -*- 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