beaker 1.19.1 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +8 -8
  2. data/HISTORY.md +295 -4
  3. data/README.md +4 -0
  4. data/lib/beaker/answers/version20.rb +103 -107
  5. data/lib/beaker/answers/version28.rb +111 -115
  6. data/lib/beaker/answers/version30.rb +194 -192
  7. data/lib/beaker/answers/version32.rb +27 -22
  8. data/lib/beaker/answers/version34.rb +6 -6
  9. data/lib/beaker/answers.rb +55 -21
  10. data/lib/beaker/cli.rb +13 -11
  11. data/lib/beaker/dsl/helpers.rb +2 -2
  12. data/lib/beaker/dsl/install_utils.rb +2 -4
  13. data/lib/beaker/host.rb +9 -5
  14. data/lib/beaker/host_prebuilt_steps.rb +33 -20
  15. data/lib/beaker/hypervisor/aws_sdk.rb +12 -10
  16. data/lib/beaker/hypervisor/ec2_helper.rb +1 -0
  17. data/lib/beaker/hypervisor/google_compute.rb +0 -1
  18. data/lib/beaker/hypervisor/vagrant.rb +11 -16
  19. data/lib/beaker/hypervisor/vagrant_fusion.rb +17 -0
  20. data/lib/beaker/hypervisor/vagrant_virtualbox.rb +26 -0
  21. data/lib/beaker/hypervisor/vagrant_workstation.rb +13 -0
  22. data/lib/beaker/hypervisor/vcloud_pooled.rb +3 -1
  23. data/lib/beaker/hypervisor.rb +22 -13
  24. data/lib/beaker/logger.rb +29 -0
  25. data/lib/beaker/options/command_line_parser.rb +2 -0
  26. data/lib/beaker/options/parser.rb +5 -4
  27. data/lib/beaker/options/presets.rb +58 -35
  28. data/lib/beaker/version.rb +1 -1
  29. data/spec/beaker/answers_spec.rb +156 -135
  30. data/spec/beaker/cli_spec.rb +35 -2
  31. data/spec/beaker/dsl/install_utils_spec.rb +2 -3
  32. data/spec/beaker/host_prebuilt_steps_spec.rb +47 -24
  33. data/spec/beaker/host_spec.rb +6 -6
  34. data/spec/beaker/hypervisor/ec2_helper_spec.rb +2 -2
  35. data/spec/beaker/hypervisor/hypervisor_spec.rb +35 -0
  36. data/spec/beaker/hypervisor/vagrant_fusion_spec.rb +34 -0
  37. data/spec/beaker/hypervisor/vagrant_spec.rb +39 -2
  38. data/spec/beaker/hypervisor/vagrant_virtualbox_spec.rb +34 -0
  39. data/spec/beaker/hypervisor/vagrant_workstation_spec.rb +34 -0
  40. data/spec/beaker/logger_spec.rb +30 -0
  41. data/spec/beaker/options/presets_spec.rb +4 -4
  42. data/spec/helpers.rb +2 -1
  43. data/spec/mocks.rb +5 -1
  44. metadata +9 -60
@@ -240,7 +240,7 @@ module Beaker
240
240
  args = [ 'source', 'target', {} ]
241
241
  conn_args = args + [ nil ]
242
242
 
243
- logger.should_receive(:debug)
243
+ logger.should_receive(:trace)
244
244
  conn.should_receive(:scp_to).with( *conn_args ).and_return(Beaker::Result.new(host, 'output!'))
245
245
 
246
246
  host.do_scp_to *args
@@ -272,7 +272,7 @@ module Beaker
272
272
  host.instance_variable_set :@connection, conn
273
273
  args = [ source_path, target_path, {:ignore => ['tests', 'tests2']} ]
274
274
 
275
- logger.should_receive(:debug)
275
+ logger.should_receive(:trace)
276
276
  host.should_receive( :mkdir_p ).exactly(0).times
277
277
  conn.should_receive(:scp_to).exactly(0).times
278
278
 
@@ -288,7 +288,7 @@ module Beaker
288
288
 
289
289
  Dir.stub( :glob ).and_return( @fileset1 + @fileset2 )
290
290
 
291
- logger.should_receive(:debug)
291
+ logger.should_receive(:trace)
292
292
  host.should_receive( :mkdir_p ).with("#{target_path}/tests")
293
293
  host.should_receive( :mkdir_p ).with("#{target_path}/tests2")
294
294
  (@fileset1 + @fileset2).each do |file|
@@ -332,7 +332,7 @@ module Beaker
332
332
  host.instance_variable_set :@connection, conn
333
333
  args = [ 'tmp', 'target', {:ignore => ['tests', 'tests2']} ]
334
334
 
335
- logger.should_receive(:debug)
335
+ logger.should_receive(:trace)
336
336
  host.should_receive( :mkdir_p ).exactly(0).times
337
337
  conn.should_receive(:scp_to).exactly(0).times
338
338
 
@@ -349,7 +349,7 @@ module Beaker
349
349
 
350
350
  Dir.stub( :glob ).and_return( @fileset1 + @fileset2 )
351
351
 
352
- logger.should_receive(:debug)
352
+ logger.should_receive(:trace)
353
353
  host.should_receive( :mkdir_p ).with('target/tmp/tests')
354
354
  host.should_receive( :mkdir_p ).with('target/tmp/tests2')
355
355
  (@fileset1 + @fileset2).each do |file|
@@ -373,7 +373,7 @@ module Beaker
373
373
 
374
374
  Dir.stub( :glob ).and_return( @fileset1 + @fileset2 )
375
375
 
376
- logger.should_receive(:debug)
376
+ logger.should_receive(:trace)
377
377
  host.should_receive( :mkdir_p ).with('target/tmp/tests2')
378
378
  (@fileset2).each do |file|
379
379
  file_args = [ file, File.join('target', file), {:ignore => [exclude_file]} ]
@@ -13,11 +13,11 @@ describe Beaker::EC2Helper do
13
13
  end
14
14
 
15
15
  it "can set ports for dashboard host" do
16
- expect(ec2.amiports(["dashboard"])).to be === [22, 61613, 8139, 443]
16
+ expect(ec2.amiports(["dashboard"])).to be === [22, 61613, 8139, 443, 4435]
17
17
  end
18
18
 
19
19
  it "can set ports for combined master/database/dashboard host" do
20
- expect(ec2.amiports(["dashboard", "master", "database"])).to be === [22, 61613, 8139, 8080, 8081, 8140, 443]
20
+ expect(ec2.amiports(["dashboard", "master", "database"])).to be === [22, 61613, 8139, 8080, 8081, 8140, 443, 4435]
21
21
  end
22
22
  end
23
23
  end
@@ -54,6 +54,20 @@ module Beaker
54
54
  expect( hypervisor.create( 'vagrant', [], make_opts() ) ).to be === vagrant
55
55
  end
56
56
 
57
+ it "creates a vagrant_fusion hypervisor for vagrant vmware fusion hosts" do
58
+ vagrant = double( 'vagrant_fusion' )
59
+ vagrant.stub( :provision ).and_return( true )
60
+ VagrantFusion.should_receive( :new ).once.and_return( vagrant )
61
+ expect( hypervisor.create( 'vagrant_fusion', [], make_opts() ) ).to be === vagrant
62
+ end
63
+
64
+ it "creates a vagrant_virtualbox hypervisor for vagrant virtualbox hosts" do
65
+ vagrant = double( 'vagrant_virtualbox' )
66
+ vagrant.stub( :provision ).and_return( true )
67
+ VagrantVirtualbox.should_receive( :new ).once.and_return( vagrant )
68
+ expect( hypervisor.create( 'vagrant_virtualbox', [], make_opts() ) ).to be === vagrant
69
+ end
70
+
57
71
  it "creates a blimpy hypervisor for blimpy hosts" do
58
72
  blimpy = double( 'blimpy' )
59
73
  blimpy.stub( :provision ).and_return( true )
@@ -61,6 +75,27 @@ module Beaker
61
75
  expect( hypervisor.create( 'blimpy', [], make_opts() ) ).to be === blimpy
62
76
  end
63
77
 
78
+ context "#configure" do
79
+ let( :options ) { make_opts.merge({ 'logger' => double().as_null_object }) }
80
+ let( :hosts ) { make_hosts( { :platform => 'el-5' } ) }
81
+ let( :hypervisor ) { Beaker::Hypervisor.new( hosts, options ) }
82
+
83
+ context "if :disable_iptables option set false" do
84
+ it "does not call disable_iptables" do
85
+ options[:disable_iptables] = false
86
+ hypervisor.should_receive( :disable_iptables ).never
87
+ hypervisor.configure
88
+ end
89
+ end
90
+
91
+ context "if :disable_iptables option set true" do
92
+ it "calls disable_iptables once" do
93
+ hypervisor.should_receive( :disable_iptables ).exactly( 1 ).times
94
+ hypervisor.configure
95
+ end
96
+ end
97
+
98
+ end
64
99
 
65
100
  end
66
101
  end
@@ -0,0 +1,34 @@
1
+ require 'spec_helper'
2
+
3
+ describe Beaker::VagrantFusion do
4
+ let( :options ) { make_opts.merge({ :hosts_file => 'sample.cfg', 'logger' => double().as_null_object }) }
5
+ let( :vagrant ) { Beaker::VagrantFusion.new( @hosts, options ) }
6
+
7
+ before :each do
8
+ @hosts = make_hosts()
9
+ end
10
+
11
+ it "uses the vmware_fusion provider for provisioning" do
12
+ @hosts.each do |host|
13
+ host_prev_name = host['user']
14
+ vagrant.should_receive( :set_ssh_config ).with( host, 'vagrant' ).once
15
+ vagrant.should_receive( :copy_ssh_to_root ).with( host, options ).once
16
+ vagrant.should_receive( :set_ssh_config ).with( host, host_prev_name ).once
17
+ end
18
+ vagrant.should_receive( :hack_etc_hosts ).with( @hosts, options ).once
19
+ FakeFS.activate!
20
+ vagrant.should_receive( :vagrant_cmd ).with( "up --provider vmware_fusion" ).once
21
+ vagrant.provision
22
+ end
23
+
24
+ it "can make a Vagranfile for a set of hosts" do
25
+ FakeFS.activate!
26
+ path = vagrant.instance_variable_get( :@vagrant_path )
27
+ vagrant.stub( :randmac ).and_return( "0123456789" )
28
+
29
+ vagrant.make_vfile( @hosts )
30
+
31
+ vagrantfile = File.read( File.expand_path( File.join( path, "Vagrantfile")))
32
+ expect( vagrantfile ).to include( %Q{ v.vm.provider :vmware_fusion do |v|\n v.vmx['memsize'] = '1024'\n end})
33
+ end
34
+ end
@@ -25,7 +25,44 @@ module Beaker
25
25
 
26
26
  vagrant.make_vfile( @hosts )
27
27
 
28
- expect( File.read( File.expand_path( File.join( path, "Vagrantfile") ) ) ).to be === "Vagrant.configure(\"2\") do |c|\n c.vm.define 'vm1' do |v|\n v.vm.hostname = 'vm1'\n v.vm.box = 'vm1_of_my_box'\n v.vm.box_url = 'http://address.for.my.box.vm1'\n v.vm.base_mac = '0123456789'\n v.vm.network :private_network, ip: \"ip.address.for.vm1\", :netmask => \"255.255.0.0\"\n end\n c.vm.define 'vm2' do |v|\n v.vm.hostname = 'vm2'\n v.vm.box = 'vm2_of_my_box'\n v.vm.box_url = 'http://address.for.my.box.vm2'\n v.vm.base_mac = '0123456789'\n v.vm.network :private_network, ip: \"ip.address.for.vm2\", :netmask => \"255.255.0.0\"\n end\n c.vm.define 'vm3' do |v|\n v.vm.hostname = 'vm3'\n v.vm.box = 'vm3_of_my_box'\n v.vm.box_url = 'http://address.for.my.box.vm3'\n v.vm.base_mac = '0123456789'\n v.vm.network :private_network, ip: \"ip.address.for.vm3\", :netmask => \"255.255.0.0\"\n end\n c.vm.provider :virtualbox do |vb|\n vb.customize [\"modifyvm\", :id, \"--memory\", \"1024\"]\n end\nend\n"
28
+ vagrantfile = File.read( File.expand_path( File.join( path, "Vagrantfile")))
29
+ expect( vagrantfile ).to be === <<-EOF
30
+ Vagrant.configure("2") do |c|
31
+ c.vm.define 'vm1' do |v|
32
+ v.vm.hostname = 'vm1'
33
+ v.vm.box = 'vm1_of_my_box'
34
+ v.vm.box_url = 'http://address.for.my.box.vm1'
35
+ v.vm.box_check_update = 'true'
36
+ v.vm.base_mac = '0123456789'
37
+ v.vm.network :private_network, ip: "ip.address.for.vm1", :netmask => "255.255.0.0"
38
+ v.vm.provider :virtualbox do |vb|
39
+ vb.customize ['modifyvm', :id, '--memory', '1024']
40
+ end
41
+ end
42
+ c.vm.define 'vm2' do |v|
43
+ v.vm.hostname = 'vm2'
44
+ v.vm.box = 'vm2_of_my_box'
45
+ v.vm.box_url = 'http://address.for.my.box.vm2'
46
+ v.vm.box_check_update = 'true'
47
+ v.vm.base_mac = '0123456789'
48
+ v.vm.network :private_network, ip: "ip.address.for.vm2", :netmask => "255.255.0.0"
49
+ v.vm.provider :virtualbox do |vb|
50
+ vb.customize ['modifyvm', :id, '--memory', '1024']
51
+ end
52
+ end
53
+ c.vm.define 'vm3' do |v|
54
+ v.vm.hostname = 'vm3'
55
+ v.vm.box = 'vm3_of_my_box'
56
+ v.vm.box_url = 'http://address.for.my.box.vm3'
57
+ v.vm.box_check_update = 'true'
58
+ v.vm.base_mac = '0123456789'
59
+ v.vm.network :private_network, ip: "ip.address.for.vm3", :netmask => "255.255.0.0"
60
+ v.vm.provider :virtualbox do |vb|
61
+ vb.customize ['modifyvm', :id, '--memory', '1024']
62
+ end
63
+ end
64
+ end
65
+ EOF
29
66
  end
30
67
 
31
68
  it "generates a valid windows config" do
@@ -59,7 +96,7 @@ module Beaker
59
96
 
60
97
  generated_file = File.read( File.expand_path( File.join( path, "Vagrantfile") ) )
61
98
 
62
- match = generated_file.match(/vb.customize \["modifyvm", :id, "--memory", "hello!"\]/)
99
+ match = generated_file.match(/vb.customize \['modifyvm', :id, '--memory', 'hello!'\]/)
63
100
 
64
101
  expect( match ).to_not be nil
65
102
 
@@ -0,0 +1,34 @@
1
+ require 'spec_helper'
2
+
3
+ describe Beaker::VagrantVirtualbox do
4
+ let( :options ) { make_opts.merge({ :hosts_file => 'sample.cfg', 'logger' => double().as_null_object }) }
5
+ let( :vagrant ) { Beaker::VagrantVirtualbox.new( @hosts, options ) }
6
+
7
+ before :each do
8
+ @hosts = make_hosts()
9
+ end
10
+
11
+ it "uses the virtualbox provider for provisioning" do
12
+ @hosts.each do |host|
13
+ host_prev_name = host['user']
14
+ vagrant.should_receive( :set_ssh_config ).with( host, 'vagrant' ).once
15
+ vagrant.should_receive( :copy_ssh_to_root ).with( host, options ).once
16
+ vagrant.should_receive( :set_ssh_config ).with( host, host_prev_name ).once
17
+ end
18
+ vagrant.should_receive( :hack_etc_hosts ).with( @hosts, options ).once
19
+ FakeFS.activate!
20
+ vagrant.should_receive( :vagrant_cmd ).with( "up --provider virtualbox" ).once
21
+ vagrant.provision
22
+ end
23
+
24
+ it "can make a Vagranfile for a set of hosts" do
25
+ FakeFS.activate!
26
+ path = vagrant.instance_variable_get( :@vagrant_path )
27
+ vagrant.stub( :randmac ).and_return( "0123456789" )
28
+
29
+ vagrant.make_vfile( @hosts )
30
+
31
+ vagrantfile = File.read( File.expand_path( File.join( path, 'Vagrantfile' )))
32
+ expect( vagrantfile ).to include( %Q{ v.vm.provider :virtualbox do |vb|\n vb.customize ['modifyvm', :id, '--memory', '1024']\n end})
33
+ end
34
+ end
@@ -0,0 +1,34 @@
1
+ require 'spec_helper'
2
+
3
+ describe Beaker::VagrantWorkstation do
4
+ let( :options ) { make_opts.merge({ :hosts_file => 'sample.cfg', 'logger' => double().as_null_object }) }
5
+ let( :vagrant ) { Beaker::VagrantWorkstation.new( @hosts, options ) }
6
+
7
+ before :each do
8
+ @hosts = make_hosts()
9
+ end
10
+
11
+ it "uses the vmware_workstation provider for provisioning" do
12
+ @hosts.each do |host|
13
+ host_prev_name = host['user']
14
+ vagrant.should_receive( :set_ssh_config ).with( host, 'vagrant' ).once
15
+ vagrant.should_receive( :copy_ssh_to_root ).with( host, options ).once
16
+ vagrant.should_receive( :set_ssh_config ).with( host, host_prev_name ).once
17
+ end
18
+ vagrant.should_receive( :hack_etc_hosts ).with( @hosts, options ).once
19
+ FakeFS.activate!
20
+ vagrant.should_receive( :vagrant_cmd ).with( "up --provider vmware_workstation" ).once
21
+ vagrant.provision
22
+ end
23
+
24
+ it "can make a Vagranfile for a set of hosts" do
25
+ FakeFS.activate!
26
+ path = vagrant.instance_variable_get( :@vagrant_path )
27
+ vagrant.stub( :randmac ).and_return( "0123456789" )
28
+
29
+ vagrant.make_vfile( @hosts )
30
+
31
+ vagrantfile = File.read( File.expand_path( File.join( path, "Vagrantfile")))
32
+ expect( vagrantfile ).to include( %Q{ v.vm.provider :vmware_workstation do |v|\n v.vmx['memsize'] = '1024'\n end})
33
+ end
34
+ end
@@ -72,6 +72,32 @@ module Beaker
72
72
  colorized_logger.optionally_color "\e[00;30m", 'my string'
73
73
  end
74
74
 
75
+ context 'at trace log_level' do
76
+ subject( :trace_logger ) { Logger.new( my_io,
77
+ :log_level => 'trace',
78
+ :quiet => true,
79
+ :color => true )
80
+ }
81
+
82
+ its( :is_debug? ) { should be_true }
83
+ its( :is_trace? ) { should be_true }
84
+ its( :is_warn? ) { should be_true }
85
+
86
+ context 'but print' do
87
+ before do
88
+ my_io.stub :puts
89
+ my_io.should_receive( :print ).at_least :twice
90
+ end
91
+
92
+ it( 'warnings' ) { trace_logger.warn 'IMA WARNING!' }
93
+ it( 'successes' ) { trace_logger.success 'SUCCESS!' }
94
+ it( 'errors' ) { trace_logger.error 'ERROR!' }
95
+ it( 'host_output' ) { trace_logger.host_output 'ERROR!' }
96
+ it( 'debugs' ) { trace_logger.debug 'DEBUGGING!' }
97
+ it( 'traces' ) { trace_logger.trace 'TRACING!' }
98
+ end
99
+ end
100
+
75
101
  context 'at verbose log_level' do
76
102
  subject( :verbose_logger ) { Logger.new( my_io,
77
103
  :log_level => 'verbose',
@@ -79,6 +105,7 @@ module Beaker
79
105
  :color => true )
80
106
  }
81
107
 
108
+ its( :is_trace? ) { should be_false }
82
109
  its( :is_debug? ) { should be_false }
83
110
  its( :is_verbose? ) { should be_true }
84
111
  its( :is_warn? ) { should be_true }
@@ -104,6 +131,7 @@ module Beaker
104
131
  :color => true )
105
132
  }
106
133
 
134
+ its( :is_trace? ) { should be_false }
107
135
  its( :is_debug? ) { should be_true }
108
136
  its( :is_warn? ) { should be_true }
109
137
 
@@ -129,6 +157,7 @@ module Beaker
129
157
  }
130
158
 
131
159
  its( :is_debug? ) { should be_false }
160
+ its( :is_trace? ) { should be_false }
132
161
 
133
162
 
134
163
  context 'skip' do
@@ -138,6 +167,7 @@ module Beaker
138
167
  end
139
168
 
140
169
  it( 'debugs' ) { info_logger.debug 'NOT DEBUGGING!' }
170
+ it( 'traces' ) { info_logger.debug 'NOT TRACING!' }
141
171
  end
142
172
 
143
173
 
@@ -4,7 +4,7 @@ module Beaker
4
4
  module Options
5
5
 
6
6
  describe Presets do
7
- let(:presets) { Presets }
7
+ let(:presets) { Presets.new }
8
8
 
9
9
  it "returns an env_vars OptionsHash" do
10
10
  expect(presets.env_vars).to be_instance_of(Beaker::Options::OptionsHash)
@@ -22,16 +22,16 @@ module Beaker
22
22
  describe 'when setting the type as pe from the environment' do
23
23
  describe 'sets type to pe if...' do
24
24
  it 'env var is set to "true"' do
25
- munged = presets.munge_found_env_vars :is_pe => 'true'
25
+ munged = presets.format_found_env_vars( {:is_pe => 'true'} )
26
26
  expect( munged[:type] ).to be == 'pe'
27
27
  end
28
28
  it 'env var is set to "yes"' do
29
- munged = presets.munge_found_env_vars :is_pe => 'yes'
29
+ munged = presets.format_found_env_vars( {:is_pe => 'yes'} )
30
30
  expect( munged[:type] ).to be == 'pe'
31
31
  end
32
32
  end
33
33
  it 'does not set type otherwise' do
34
- munged = presets.munge_found_env_vars :is_pe => 'false'
34
+ munged = presets.format_found_env_vars( {:is_pe => 'false'} )
35
35
  expect( munged[:type] ).to be == nil
36
36
  end
37
37
  end
data/spec/helpers.rb CHANGED
@@ -47,7 +47,8 @@ module HostHelpers
47
47
  end
48
48
 
49
49
  def make_opts
50
- Beaker::Options::Presets.presets.merge( Beaker::Options::Presets.env_vars ).merge( { :logger => logger,
50
+ opts = Beaker::Options::Presets.new
51
+ opts.presets.merge( opts.env_vars ).merge( { :logger => logger,
51
52
  :host_config => 'sample.config',
52
53
  :type => :foss,
53
54
  :pooling_api => 'http://vcloud.delivery.puppetlabs.net/',
data/spec/mocks.rb CHANGED
@@ -17,7 +17,11 @@ module MockNet
17
17
  class Response
18
18
  class ResponseHash
19
19
  def []key
20
- { 'ok' => true, 'hostname' => 'pool' }
20
+ if key == "domain"
21
+ nil
22
+ else
23
+ { 'ok' => true, 'hostname' => 'pool' }
24
+ end
21
25
  end
22
26
 
23
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.1
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-19 00:00:00.000000000 Z
11
+ date: 2014-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -433,6 +433,9 @@ files:
433
433
  - lib/beaker/hypervisor/openstack.rb
434
434
  - lib/beaker/hypervisor/solaris.rb
435
435
  - lib/beaker/hypervisor/vagrant.rb
436
+ - lib/beaker/hypervisor/vagrant_fusion.rb
437
+ - lib/beaker/hypervisor/vagrant_virtualbox.rb
438
+ - lib/beaker/hypervisor/vagrant_workstation.rb
436
439
  - lib/beaker/hypervisor/vcloud.rb
437
440
  - lib/beaker/hypervisor/vcloud_pooled.rb
438
441
  - lib/beaker/hypervisor/vsphere.rb
@@ -485,7 +488,10 @@ files:
485
488
  - spec/beaker/hypervisor/fusion_spec.rb
486
489
  - spec/beaker/hypervisor/hypervisor_spec.rb
487
490
  - spec/beaker/hypervisor/solaris_spec.rb
491
+ - spec/beaker/hypervisor/vagrant_fusion_spec.rb
488
492
  - spec/beaker/hypervisor/vagrant_spec.rb
493
+ - spec/beaker/hypervisor/vagrant_virtualbox_spec.rb
494
+ - spec/beaker/hypervisor/vagrant_workstation_spec.rb
489
495
  - spec/beaker/hypervisor/vcloud_pooled_spec.rb
490
496
  - spec/beaker/hypervisor/vcloud_spec.rb
491
497
  - spec/beaker/hypervisor/vsphere_helper_spec.rb
@@ -543,62 +549,5 @@ rubygems_version: 2.2.2
543
549
  signing_key:
544
550
  specification_version: 4
545
551
  summary: Let's test Puppet!
546
- test_files:
547
- - spec/beaker/answers_spec.rb
548
- - spec/beaker/cli_spec.rb
549
- - spec/beaker/command_spec.rb
550
- - spec/beaker/dsl/assertions_spec.rb
551
- - spec/beaker/dsl/ezbake_utils_spec.rb
552
- - spec/beaker/dsl/helpers_spec.rb
553
- - spec/beaker/dsl/install_utils_spec.rb
554
- - spec/beaker/dsl/outcomes_spec.rb
555
- - spec/beaker/dsl/roles_spec.rb
556
- - spec/beaker/dsl/structure_spec.rb
557
- - spec/beaker/dsl/wrappers_spec.rb
558
- - spec/beaker/host/unix/pkg_spec.rb
559
- - spec/beaker/host/windows/group_spec.rb
560
- - spec/beaker/host_prebuilt_steps_spec.rb
561
- - spec/beaker/host_spec.rb
562
- - spec/beaker/hypervisor/aixer_spec.rb
563
- - spec/beaker/hypervisor/aws_sdk_spec.rb
564
- - spec/beaker/hypervisor/blimper_spec.rb
565
- - spec/beaker/hypervisor/docker_spec.rb
566
- - spec/beaker/hypervisor/ec2_helper_spec.rb
567
- - spec/beaker/hypervisor/fusion_spec.rb
568
- - spec/beaker/hypervisor/hypervisor_spec.rb
569
- - spec/beaker/hypervisor/solaris_spec.rb
570
- - spec/beaker/hypervisor/vagrant_spec.rb
571
- - spec/beaker/hypervisor/vcloud_pooled_spec.rb
572
- - spec/beaker/hypervisor/vcloud_spec.rb
573
- - spec/beaker/hypervisor/vsphere_helper_spec.rb
574
- - spec/beaker/hypervisor/vsphere_spec.rb
575
- - spec/beaker/logger_spec.rb
576
- - spec/beaker/options/command_line_parser_spec.rb
577
- - spec/beaker/options/data/LATEST
578
- - spec/beaker/options/data/badyaml.cfg
579
- - spec/beaker/options/data/hosts.cfg
580
- - spec/beaker/options/data/opts.txt
581
- - spec/beaker/options/hosts_file_parser_spec.rb
582
- - spec/beaker/options/options_file_parser_spec.rb
583
- - spec/beaker/options/options_hash_spec.rb
584
- - spec/beaker/options/parser_spec.rb
585
- - spec/beaker/options/pe_version_scaper_spec.rb
586
- - spec/beaker/options/presets_spec.rb
587
- - spec/beaker/perf_spec.rb
588
- - spec/beaker/platform_spec.rb
589
- - spec/beaker/puppet_command_spec.rb
590
- - spec/beaker/shared/error_handler_spec.rb
591
- - spec/beaker/shared/host_manager_spec.rb
592
- - spec/beaker/shared/repetition_spec.rb
593
- - spec/beaker/ssh_connection_spec.rb
594
- - spec/beaker/test_case_spec.rb
595
- - spec/beaker/test_suite_spec.rb
596
- - spec/helpers.rb
597
- - spec/matchers.rb
598
- - spec/mock_blimpy.rb
599
- - spec/mock_fission.rb
600
- - spec/mock_vsphere.rb
601
- - spec/mock_vsphere_helper.rb
602
- - spec/mocks.rb
603
- - spec/spec_helper.rb
552
+ test_files: []
604
553
  has_rdoc: