otwarchive-symphonyarchive/spec/models/stat_counter_spec.rb
2026-03-11 22:22:11 +00:00

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