summaryrefslogtreecommitdiff
path: root/spec/models/ci/mail_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/ci/mail_service_spec.rb')
-rw-r--r--spec/models/ci/mail_service_spec.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/models/ci/mail_service_spec.rb b/spec/models/ci/mail_service_spec.rb
index 564c2941bb5..b5f37b349db 100644
--- a/spec/models/ci/mail_service_spec.rb
+++ b/spec/models/ci/mail_service_spec.rb
@@ -47,8 +47,8 @@ describe Ci::MailService do
end
def should_email(email)
- expect(Notify).to receive(:build_fail_email).with(build.id, email)
- expect(Notify).not_to receive(:build_success_email).with(build.id, email)
+ expect(Ci::Notify).to receive(:build_fail_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_success_email).with(build.id, email)
end
end
@@ -69,8 +69,8 @@ describe Ci::MailService do
end
def should_email(email)
- expect(Notify).to receive(:build_success_email).with(build.id, email)
- expect(Notify).not_to receive(:build_fail_email).with(build.id, email)
+ expect(Ci::Notify).to receive(:build_success_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_fail_email).with(build.id, email)
end
end
@@ -97,8 +97,8 @@ describe Ci::MailService do
end
def should_email(email)
- expect(Notify).to receive(:build_success_email).with(build.id, email)
- expect(Notify).not_to receive(:build_fail_email).with(build.id, email)
+ expect(Ci::Notify).to receive(:build_success_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_fail_email).with(build.id, email)
end
end
@@ -125,8 +125,8 @@ describe Ci::MailService do
end
def should_email(email)
- expect(Notify).not_to receive(:build_success_email).with(build.id, email)
- expect(Notify).not_to receive(:build_fail_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_success_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_fail_email).with(build.id, email)
end
end
@@ -176,8 +176,8 @@ describe Ci::MailService do
end
def should_email(email)
- expect(Notify).not_to receive(:build_success_email).with(build.id, email)
- expect(Notify).not_to receive(:build_fail_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_success_email).with(build.id, email)
+ expect(Ci::Notify).not_to receive(:build_fail_email).with(build.id, email)
end
end
end