Sha256: fb05fd3d49cbb5352186b5dd689dbcd6e268af6187d3bf599494026ae4b687e1
Contents?: true
Size: 779 Bytes
Versions: 5
Compression:
Stored size: 779 Bytes
Contents
require 'spec_helper' describe Message do before do @entity1 = Factory(:user) @entity2 = Factory(: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
5 entries across 5 versions & 1 rubygems