Sha256: 63eb2c85588b54b45bd531b2c79a54878161c5053a2b01050e5dd1a8f0e20fde
Contents?: true
Size: 801 Bytes
Versions: 9
Compression:
Stored size: 801 Bytes
Contents
require 'spec_helper' describe Message do before do @entity1 = FactoryGirl.create(:user) @entity2 = FactoryGirl.create(:user) @receipt1 = @entity1.send_message(@entity2,"Body","Subject") @receipt2 = @entity2.reply_to_all(@receipt1,"Reply body 1") @receipt3 = @entity1.reply_to_all(@receipt2,"Reply body 2") @receipt4 = @entity2.reply_to_all(@receipt3,"Reply body 3") @message1 = @receipt1.notification @message4 = @receipt4.notification @conversation = @message1.conversation end it "should have right recipients" do @receipt1.notification.recipients.count.should==2 @receipt2.notification.recipients.count.should==2 @receipt3.notification.recipients.count.should==2 @receipt4.notification.recipients.count.should==2 end end
Version data entries
9 entries across 9 versions & 2 rubygems