Sha256: 5fd2624c53f649f56026e575c7f3dc84d7530d331083a41d00ab88f76a535b58
Contents?: true
Size: 1.51 KB
Versions: 20
Compression:
Stored size: 1.51 KB
Contents
require 'spec_helper' require 'r10k/source' describe R10K::Source::Hash do describe '.valid_environments_hash?' do it "rejects strings" do expect(R10K::Source::Hash.valid_environments_hash?('200 OK')) .to eq false end end let(:environments_hash) do { 'production' => { 'remote' => 'https://git.example.com/puppet/control-repo.git', 'ref' => 'release-141', 'modules' => { 'puppetlabs-stdlib' => '6.1.0', 'puppetlabs-ntp' => '8.1.0', 'example-myapp1' => { 'git' => 'https://git.example.com/puppet/example-myapp1.git', 'ref' => 'v1.3.0' } } }, 'development' => { 'remote' => 'https://git.example.com/puppet/control-repo.git', 'ref' => 'master', 'modules' => { 'puppetlabs-stdlib' => '6.1.0', 'puppetlabs-ntp' => '8.1.0', 'example-myapp1' => { 'git' => 'https://git.example.com/puppet/example-myapp1.git', 'ref' => 'v1.3.1' } } } } end describe "with a prefix" do subject do described_class.new('hashsource', '/some/nonexistent/dir', prefix: 'prefixed', environments: environments_hash) end it "prepends environment names with a prefix" do environments = subject.environments expect(environments[0].dirname).to eq 'prefixed_production' expect(environments[1].dirname).to eq 'prefixed_development' end end end
Version data entries
20 entries across 20 versions & 2 rubygems