Sha256: c5ae5939ad2e5c617da6179b1b17f591074622cc9bdfc41a9047a8d4a2de3bc6
Contents?: true
Size: 818 Bytes
Versions: 26
Compression:
Stored size: 818 Bytes
Contents
require 'rails_helper' describe UserCheckoutStat do fixtures :user_checkout_stats it "calculates user count" do old_message_count = Message.count user_checkout_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 UserCheckoutStatJob.perform_later(user_checkout_stats(:one)).should be_truthy end end # == Schema Information # # Table name: user_checkout_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
26 entries across 26 versions & 1 rubygems