otwarchive-sunsetarchive/spec/models/stat_counter_spec.rb

15 lines
242 B
Ruby
Raw Permalink Normal View History

2026-03-17 05:16:49 +00:00
# -*- 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