Skip to content
Snippets Groups Projects
Commit e3e8b9fc authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

fixed tests

parent bfebf108
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -31,14 +31,14 @@ describe NotificationService do
 
describe :reassigned_issue do
it 'should sent email to issue old assignee and new issue assignee' do
Notify.should_receive(:reassigned_issue_email).twice
Notify.should_receive(:reassigned_issue_email)
notification.reassigned_issue(issue, issue.author)
end
end
 
describe :close_issue do
it 'should sent email to issue assignee and issue author' do
Notify.should_receive(:issue_status_changed_email).twice
Notify.should_receive(:issue_status_changed_email)
notification.close_issue(issue, issue.author)
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment