-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
I have a spec that looks like this:
NewPostEmail.new(friend, me, post).should be_delivered
NewPostEmail.new(friend, me, later_post).should_not be_delivered
because I'm sending bulk emails. In this case, I want to make sure the first one is sent because post
is valid for sending at this time, but later_post
is not, and should not be sent out. When the spec runs, it says both should be delivered, but I think it's a false positive because it sees the same to
and same subject
lines and probably whatever else to determine that these are the same email even though they're not.
Metadata
Metadata
Assignees
Labels
No labels