Sha256: 2f83558dff67a8be22f32b7f29617b50a908175ef3086f33545d9f46c66b7bdb
Contents?: true
Size: 2 KB
Versions: 100
Compression:
Stored size: 2 KB
Contents
describe KnapsackPro::Config::CI::Circle do let(:env) { {} } before do stub_const('ENV', env) end it { should be_kind_of KnapsackPro::Config::CI::Base } describe '#node_total' do subject { described_class.new.node_total } context 'when environment exists' do let(:env) { { 'CIRCLE_NODE_TOTAL' => 4 } } it { should eql 4 } end context "when environment doesn't exist" do it { should be nil } end end describe '#node_index' do subject { described_class.new.node_index } context 'when environment exists' do let(:env) { { 'CIRCLE_NODE_INDEX' => 3 } } it { should eql 3 } end context "when environment doesn't exist" do it { should be nil } end end describe '#node_build_id' do subject { described_class.new.node_build_id } context 'when environment exists' do let(:env) { { 'CIRCLE_BUILD_NUM' => 123 } } it { should eql 123 } end context "when environment doesn't exist" do it { should be nil } end end describe '#commit_hash' do subject { described_class.new.commit_hash } context 'when environment exists' do let(:env) { { 'CIRCLE_SHA1' => '3fa64859337f6e56409d49f865d13fd7' } } it { should eql '3fa64859337f6e56409d49f865d13fd7' } end context "when environment doesn't exist" do it { should be nil } end end describe '#branch' do subject { described_class.new.branch } context 'when environment exists' do let(:env) { { 'CIRCLE_BRANCH' => 'master' } } it { should eql 'master' } end context "when environment doesn't exist" do it { should be nil } end end describe '#project_dir' do subject { described_class.new.project_dir } context 'when environment exists' do let(:env) { { 'CIRCLE_PROJECT_REPONAME' => 'knapsack_pro-ruby' } } it { should eql '/home/ubuntu/knapsack_pro-ruby' } end context "when environment doesn't exist" do it { should be nil } end end end
Version data entries
100 entries across 100 versions & 1 rubygems