fixed tests
This commit is contained in:
parent
bfebf10850
commit
e3e8b9fcb9
1 changed files with 2 additions and 2 deletions
|
@ -31,14 +31,14 @@ describe NotificationService do
|
||||||
|
|
||||||
describe :reassigned_issue do
|
describe :reassigned_issue do
|
||||||
it 'should sent email to issue old assignee and new issue assignee' 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)
|
notification.reassigned_issue(issue, issue.author)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe :close_issue do
|
describe :close_issue do
|
||||||
it 'should sent email to issue assignee and issue author' 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)
|
notification.close_issue(issue, issue.author)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue