summaryrefslogtreecommitdiff
path: root/spec/hooks_utils_spec.rb
blob: 2113239a4e46ae2dec6f7ca999e5a4dd986c7ed4 (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
require_relative 'spec_helper'
require_relative '../lib/hooks_utils.rb'

describe :get_push_options do
  context "when GIT_PUSH_OPTION_COUNT is not set" do
    it { expect(HooksUtils.get_push_options).to eq([]) }
  end

  context "when one option is given" do
    before do
      ENV['GIT_PUSH_OPTION_COUNT'] = '1'
      ENV['GIT_PUSH_OPTION_0'] = 'aaa'
    end

    it { expect(HooksUtils.get_push_options).to eq(['aaa']) }
  end

  context "when multiple options are given" do
    before do
      ENV['GIT_PUSH_OPTION_COUNT'] = '3'
      ENV['GIT_PUSH_OPTION_0'] = 'aaa'
      ENV['GIT_PUSH_OPTION_1'] = 'bbb'
      ENV['GIT_PUSH_OPTION_2'] = 'ccc'
    end

    it { expect(HooksUtils.get_push_options).to eq(['aaa', 'bbb', 'ccc']) }
  end
end