Sha256: 210b8f7a856bf20da30a3b446e7e7a97543e4fad3c21182efcb404fcf4ae8b08
Contents?: true
Size: 1.7 KB
Versions: 124
Compression:
Stored size: 1.7 KB
Contents
describe KnapsackPro::Config::CI::Travis 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 } it { should be nil } end describe '#node_index' do subject { described_class.new.node_index } it { should be nil } end describe '#node_build_id' do subject { described_class.new.node_build_id } context 'when environment exists' do let(:env) { { 'TRAVIS_BUILD_NUMBER' => 4 } } it { should eql 4 } 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) { { 'TRAVIS_COMMIT' => '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) { { 'TRAVIS_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) { { 'TRAVIS_BUILD_DIR' => '/home/travis/build/KnapsackPro/rails-app-with-knapsack_pro' } } it { should eql '/home/travis/build/KnapsackPro/rails-app-with-knapsack_pro' } end context "when environment doesn't exist" do it { should be nil } end end end
Version data entries
124 entries across 124 versions & 1 rubygems