Sha256: e8f41befe8b546140530c078a084ba3a2a1167ce5b736be06973698db20a37aa
Contents?: true
Size: 899 Bytes
Versions: 12
Compression:
Stored size: 899 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' describe ManifestationReserveStat do fixtures :manifestation_reserve_stats it "calculates manifestation count" do old_message_count = Message.count manifestation_reserve_stats(:one).transition_to!(:started).should be_truthy Message.count.should eq old_message_count + 1 Message.order(:id).last.subject.should eq '集計が完了しました' end it "should calculate in background" do ManifestationReserveStatQueue.perform(manifestation_reserve_stats(:one).id).should be_truthy end end # == Schema Information # # Table name: manifestation_reserve_stats # # id :integer not null, primary key # start_date :datetime # end_date :datetime # note :text # created_at :datetime # updated_at :datetime # started_at :datetime # completed_at :datetime # user_id :integer #
Version data entries
12 entries across 12 versions & 1 rubygems