summaryrefslogtreecommitdiff
path: root/spec/mailers/ci/notify_spec.rb
blob: b83fb41603bff1a5cb212e0d8387070806747f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require 'spec_helper'

describe Ci::Notify do
  include EmailSpec::Helpers
  include EmailSpec::Matchers

  before do
    @commit = FactoryGirl.create :ci_commit
    @build = FactoryGirl.create :ci_build, commit: @commit
  end

  describe 'build success' do
    subject { Ci::Notify.build_success_email(@build.id, 'wow@example.com') }

    it 'has the correct subject' do
      should have_subject /Build success for/
    end

    it 'contains name of project' do
      should have_body_text /build successful/
    end
  end

  describe 'build fail' do
    subject { Ci::Notify.build_fail_email(@build.id, 'wow@example.com') }

    it 'has the correct subject' do
      should have_subject /Build failed for/
    end

    it 'contains name of project' do
      should have_body_text /build failed/
    end
  end
end