summaryrefslogtreecommitdiff
path: root/spec/acceptance/class_spec.rb
blob: 67434c2aa1e0ec4c447b8df691680f4301134940 (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
require 'spec_helper_acceptance'

describe 'gitlab_ci_multi_runner class' do

  context 'default parameters' do
    # Using puppet_apply as a helper
    it 'should work with no errors' do
      pp = <<-EOS
      class { 'gitlab_ci_multi_runner': }
      EOS

      # Run it twice and test for idempotency
      expect(apply_manifest(pp).exit_code).to_not eq(1)
      expect(apply_manifest(pp).exit_code).to eq(0)
    end

    describe package('gitlab_ci_multi_runner') do
      it { should be_installed }
    end

    describe service('gitlab_ci_multi_runner') do
      it { should be_enabled }
      it { should be_running }
    end
  end
end