beaker 2.47.1 → 2.48.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +8 -8
  2. data/CONTRIBUTING.md +5 -5
  3. data/HISTORY.md +288 -2
  4. data/README.md +36 -15
  5. data/Rakefile +4 -4
  6. data/acceptance/tests/base/dsl/helpers/host_helpers/archive_file_from_test.rb +35 -0
  7. data/acceptance/tests/base/host_test.rb +16 -16
  8. data/acceptance/tests/install/from_file.rb +20 -0
  9. data/acceptance/tests/puppet/stub_host.rb +47 -0
  10. data/beaker.gemspec +1 -6
  11. data/docs/README.md +16 -26
  12. data/docs/{Argument-Processing-and-Precedence.md → concepts/argument_processing_and_precedence.md} +9 -9
  13. data/docs/{Beaker-Libraries.md → concepts/beaker_libraries.md} +0 -0
  14. data/docs/{beaker-vs.-beaker-rspec.md → concepts/beaker_vs_beaker_rspec.md} +0 -0
  15. data/docs/{Beaker-with-Masterless-Puppet.md → concepts/masterless_puppet.md} +0 -0
  16. data/docs/{Roles-What-Are-They.md → concepts/roles_what_are_they.md} +0 -0
  17. data/docs/{Shared-Options-for-Executing-Beaker-Commands.md → concepts/shared_options_for_executing_beaker_commands.md} +1 -1
  18. data/docs/{Beaker-Test-Tagging.md → concepts/test_tagging.md} +0 -0
  19. data/docs/{meta → concepts}/ticket_process.md +0 -0
  20. data/docs/{Types,-Puppet-4,-and-the-All-In-One-Agent.md → concepts/types_puppet_4_and_the_all_in_one_agent.md} +0 -0
  21. data/docs/{Access-the-Live-Test-Console-with-Pry.md → how_to/access_the_live_test_console_with_pry.md} +0 -0
  22. data/docs/{dsl → how_to}/confine.md +0 -0
  23. data/docs/{hosts → how_to/hosts}/README.md +0 -0
  24. data/docs/{hosts → how_to/hosts}/cisco.md +0 -0
  25. data/docs/{hosts → how_to/hosts}/eos.md +0 -0
  26. data/docs/{hypervisors → how_to/hypervisors}/README.md +0 -0
  27. data/docs/{hypervisors → how_to/hypervisors}/aws.md +0 -0
  28. data/docs/{hypervisors → how_to/hypervisors}/docker.md +0 -0
  29. data/docs/{hypervisors → how_to/hypervisors}/ec2.md +0 -0
  30. data/docs/{hypervisors → how_to/hypervisors}/google_compute_engine.md +0 -0
  31. data/docs/{hypervisors → how_to/hypervisors}/openstack.md +0 -0
  32. data/docs/{hypervisors → how_to/hypervisors}/solaris.md +0 -0
  33. data/docs/{hypervisors → how_to/hypervisors}/vagrant.md +0 -0
  34. data/docs/{hypervisors → how_to/hypervisors}/vagrant_hosts_file_examples.md +0 -0
  35. data/docs/{hypervisors → how_to/hypervisors}/vmware_fusion.md +0 -0
  36. data/docs/{hypervisors → how_to/hypervisors}/vsphere.md +0 -0
  37. data/docs/{dsl → how_to}/platform_specific_tag_confines.md +0 -0
  38. data/docs/how_to/preserve_hosts.md +80 -0
  39. data/docs/how_to/rake_tasks.md +49 -0
  40. data/docs/{Beaker-Recipes.md → how_to/recipes.md} +0 -0
  41. data/docs/{runner → how_to}/run_in_parallel.md +0 -0
  42. data/docs/{The-Beaker-DSL.md → how_to/the_beaker_dsl.md} +0 -0
  43. data/docs/{How-To-Use-User-Password-Authentication-with-Beaker.md → how_to/use_user_password_authentication.md} +0 -0
  44. data/docs/{How-to-Write-a-Beaker-Test-for-a-Module.md → how_to/write_a_beaker_test_for_a_module.md} +2 -2
  45. data/docs/{Creating-A-Test-Environment.md → tutorials/creating_a_test_environment.md} +13 -10
  46. data/docs/tutorials/how_to_beaker.md +6 -0
  47. data/docs/{Beaker-Installation.md → tutorials/installation.md} +0 -0
  48. data/docs/{Lets-Write-a-Test.md → tutorials/lets_write_a_test.md} +18 -11
  49. data/docs/{runner → tutorials}/test_run.md +0 -0
  50. data/docs/{runner → tutorials}/test_suites.md +0 -0
  51. data/docs/{The-Command-Line.md → tutorials/the_command_line.md} +0 -0
  52. data/lib/beaker/dsl/helpers/host_helpers.rb +39 -0
  53. data/lib/beaker/dsl/helpers/puppet_helpers.rb +22 -17
  54. data/lib/beaker/dsl/install_utils/foss_utils.rb +19 -11
  55. data/lib/beaker/dsl/install_utils/windows_utils.rb +39 -0
  56. data/lib/beaker/host/mac/pkg.rb +20 -2
  57. data/lib/beaker/host/unix/exec.rb +4 -4
  58. data/lib/beaker/host/unix/pkg.rb +1 -1
  59. data/lib/beaker/test_suite.rb +12 -5
  60. data/lib/beaker/version.rb +1 -1
  61. data/spec/beaker/dsl/helpers/puppet_helpers_spec.rb +33 -9
  62. data/spec/beaker/dsl/install_utils/foss_utils_spec.rb +24 -0
  63. data/spec/beaker/host_spec.rb +10 -10
  64. data/spec/beaker/test_suite_spec.rb +23 -0
  65. metadata +46 -99
  66. data/docs/How-To-Beaker.md +0 -6
  67. data/docs/meta/README.md +0 -6
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '2.47.1'
3
+ STRING = '2.48.0'
4
4
  end
5
5
  end
@@ -318,22 +318,48 @@ describe ClassMixedWithDSLHelpers do
318
318
 
319
319
  describe '#stub_hosts_on' do
320
320
  it 'executes puppet on the host passed and ensures it is reverted' do
321
+ test_host = make_host('my_host', {})
321
322
  allow( subject ).to receive( :hosts ).and_return( hosts )
322
323
  logger = double.as_null_object
323
324
 
325
+ expect( subject ).to receive( :on ).once
324
326
  allow( subject ).to receive( :logger ).and_return( logger )
325
- expect( subject ).to receive( :on ).twice
326
327
  expect( subject ).to receive( :teardown ).and_yield
327
- expect( subject ).to receive( :puppet ).once.
328
- with( 'resource', 'host',
329
- 'puppetlabs.com',
330
- 'ensure=present', 'ip=127.0.0.1' )
328
+ manifest =<<-EOS.gsub /^\s+/, ""
329
+ host { 'puppetlabs.com':
330
+ \tensure => present,
331
+ \tip => '127.0.0.1',
332
+ \thost_aliases => [],
333
+ }
334
+ EOS
335
+ expect( subject ).to receive( :apply_manifest_on ).once.
336
+ with( test_host, manifest )
331
337
  expect( subject ).to receive( :puppet ).once.
332
338
  with( 'resource', 'host',
333
339
  'puppetlabs.com',
334
340
  'ensure=absent' )
335
341
 
336
- subject.stub_hosts_on( make_host('my_host', {}), 'puppetlabs.com' => '127.0.0.1' )
342
+ subject.stub_hosts_on( test_host, {'puppetlabs.com' => '127.0.0.1'} )
343
+ end
344
+ it 'adds aliases to defined hostname' do
345
+ test_host = make_host('my_host', {})
346
+ allow( subject ).to receive( :hosts ).and_return( hosts )
347
+ logger = double.as_null_object
348
+
349
+ expect( subject ).to receive( :on ).once
350
+ allow( subject ).to receive( :logger ).and_return( logger )
351
+ expect( subject ).to receive( :teardown ).and_yield
352
+ manifest =<<-EOS.gsub /^\s+/, ""
353
+ host { 'puppetlabs.com':
354
+ \tensure => present,
355
+ \tip => '127.0.0.1',
356
+ \thost_aliases => [\"foo\", \"bar\"],
357
+ }
358
+ EOS
359
+ expect( subject ).to receive( :apply_manifest_on ).once.
360
+ with( test_host, manifest )
361
+
362
+ subject.stub_hosts_on( test_host, {'puppetlabs.com' => '127.0.0.1'}, {'puppetlabs.com' => ['foo','bar']} )
337
363
  end
338
364
  end
339
365
 
@@ -355,9 +381,7 @@ describe ClassMixedWithDSLHelpers do
355
381
  expect( Resolv ).to receive( :getaddress ).
356
382
  with( 'my_forge.example.com' ).and_return( '127.0.0.1' )
357
383
  expect( subject ).to receive( :stub_hosts_on ).
358
- with( host, 'forge.puppetlabs.com' => '127.0.0.1' )
359
- expect( subject ).to receive( :stub_hosts_on ).
360
- with( host, 'forgeapi.puppetlabs.com' => '127.0.0.1' )
384
+ with( host, {'forge.puppetlabs.com' => '127.0.0.1'}, {'forge.puppetlabs.com' => ['forge.puppet.com','forgeapi.puppetlabs.com','forgeapi.puppet.com']} )
361
385
 
362
386
  subject.stub_forge_on( host, 'my_forge.example.com' )
363
387
  end
@@ -945,6 +945,30 @@ describe ClassMixedWithDSLInstallUtils do
945
945
  subject.install_puppet_agent_dev_repo_on( host, opts )
946
946
  end
947
947
 
948
+ it 'runs the correct install for el-based platforms on s390x architectures' do
949
+ platform = Object.new()
950
+ allow(platform).to receive(:to_array) { ['el', '5', 's390x'] }
951
+ host = basic_hosts.first
952
+ host['platform'] = platform
953
+ sha_value = 'ereiuwoiur'
954
+ opts = { :version => '0.1.0', :puppet_agent_sha => sha_value }
955
+ allow( subject ).to receive( :options ).and_return( {} )
956
+
957
+ release_path_end = 'fake_release_path_end'
958
+ release_file = 'fake_29835_release_file'
959
+ expect( host ).to receive( :puppet_agent_dev_package_info ).and_return(
960
+ [ release_path_end, release_file ] )
961
+
962
+ expect(subject).not_to receive(:install_puppetlabs_dev_repo)
963
+ expect(host).not_to receive(:install_package)
964
+
965
+ expect(subject).to receive(:fetch_http_file).once.with(/#{release_path_end}$/, release_file, /\/el$/)
966
+ expect(subject).to receive(:scp_to).once.with(host, /#{release_file}$/, anything)
967
+ expect(subject).to receive(:on).ordered.with(host, /rpm -ivh.*#{release_file}$/)
968
+
969
+ subject.install_puppet_agent_dev_repo_on( host, opts )
970
+ end
971
+
948
972
  it 'runs the correct install for debian-based platforms' do
949
973
  platform = Object.new()
950
974
  allow(platform).to receive(:to_array) { ['debian', '5', 'x4']}
@@ -186,7 +186,7 @@ module Beaker
186
186
  it "does nothing if the key/value pair already exists" do
187
187
  result = Beaker::Result.new(host, '')
188
188
  result.exit_code = 0
189
- expect( Beaker::Command ).to receive(:new).with("grep ^KEY=.*\\/my\\/first\\/value ~/.ssh/environment")
189
+ expect( Beaker::Command ).to receive(:new).with("grep ^key=.*\\/my\\/first\\/value ~/.ssh/environment")
190
190
  expect( host ).to receive(:exec).once.and_return(result)
191
191
 
192
192
  host.add_env_var('key', '/my/first/value')
@@ -195,24 +195,24 @@ module Beaker
195
195
  it "adds new line to environment file if no env var of that name already exists" do
196
196
  result = Beaker::Result.new(host, '')
197
197
  result.exit_code = 1
198
- expect( Beaker::Command ).to receive(:new).with("grep ^KEY=.*\\/my\\/first\\/value ~/.ssh/environment")
198
+ expect( Beaker::Command ).to receive(:new).with("grep ^key=.*\\/my\\/first\\/value ~/.ssh/environment")
199
199
  expect( host ).to receive(:exec).and_return(result)
200
- expect( Beaker::Command ).to receive(:new).with(/grep \^KEY ~\/\.ssh\/environment/)
200
+ expect( Beaker::Command ).to receive(:new).with(/grep \^key ~\/\.ssh\/environment/)
201
201
  expect( host ).to receive(:exec).and_return(result)
202
- expect( Beaker::Command ).to receive(:new).with("echo \"KEY=/my/first/value\" >> ~/.ssh/environment")
202
+ expect( Beaker::Command ).to receive(:new).with("echo \"key=/my/first/value\" >> ~/.ssh/environment")
203
203
  host.add_env_var('key', '/my/first/value')
204
204
  end
205
205
 
206
206
  it "updates existing line in environment file when adding additional value to existing variable" do
207
207
  result = Beaker::Result.new(host, '')
208
208
  result.exit_code = 1
209
- expect( Beaker::Command ).to receive(:new).with("grep ^KEY=.*\\/my\\/first\\/value ~/.ssh/environment")
209
+ expect( Beaker::Command ).to receive(:new).with("grep ^key=.*\\/my\\/first\\/value ~/.ssh/environment")
210
210
  expect( host ).to receive(:exec).and_return(result)
211
211
  result = Beaker::Result.new(host, '')
212
212
  result.exit_code = 0
213
- expect( Beaker::Command ).to receive(:new).with(/grep \^KEY ~\/\.ssh\/environment/)
213
+ expect( Beaker::Command ).to receive(:new).with(/grep \^key ~\/\.ssh\/environment/)
214
214
  expect( host ).to receive(:exec).and_return(result)
215
- expect( Beaker::SedCommand ).to receive(:new).with('unix', 's/^KEY=/KEY=\\/my\\/first\\/value:/', '~/.ssh/environment')
215
+ expect( Beaker::SedCommand ).to receive(:new).with('unix', 's/^key=/key=\\/my\\/first\\/value:/', '~/.ssh/environment')
216
216
  host.add_env_var('key', '/my/first/value')
217
217
  end
218
218
 
@@ -220,9 +220,9 @@ module Beaker
220
220
 
221
221
  describe "#delete_env_var" do
222
222
  it "deletes env var" do
223
- expect( Beaker::SedCommand ).to receive(:new).with('unix', '/KEY=\\/my\\/first\\/value$/d', '~/.ssh/environment')
224
- expect( Beaker::SedCommand ).to receive(:new).with("unix", "s/KEY=\\(.*\\)[;:]\\/my\\/first\\/value/KEY=\\1/", "~/.ssh/environment")
225
- expect( Beaker::SedCommand ).to receive(:new).with("unix", "s/KEY=\\/my\\/first\\/value[;:]/KEY=/", "~/.ssh/environment")
223
+ expect( Beaker::SedCommand ).to receive(:new).with('unix', '/key=\\/my\\/first\\/value$/d', '~/.ssh/environment')
224
+ expect( Beaker::SedCommand ).to receive(:new).with("unix", "s/key=\\(.*\\)[;:]\\/my\\/first\\/value/key=\\1/", "~/.ssh/environment")
225
+ expect( Beaker::SedCommand ).to receive(:new).with("unix", "s/key=\\/my\\/first\\/value[;:]/key=/", "~/.ssh/environment")
226
226
  host.delete_env_var('key', '/my/first/value')
227
227
  end
228
228
 
@@ -226,6 +226,29 @@ module Beaker
226
226
  expect( test_suite_result.elapsed_time ).to be == 111
227
227
  end
228
228
 
229
+ describe '#print_test_result' do
230
+ it 'prints the test result without the line number if no file path' do
231
+ tc = Beaker::TestCase.new( hosts, options[:logger], options)
232
+ ex = StandardError.new('failed')
233
+ allow(ex).to receive(:backtrace).and_return(['path_to_test_file.rb line 1 - blah'])
234
+ tc.instance_variable_set(:@exception, ex)
235
+ test_suite_result.add_test_case( tc )
236
+ expect(options[:logger]).to_not receive(:notify).with(/Test line:/)
237
+ expect{ test_suite_result.print_test_result(tc) }.to_not raise_error
238
+ end
239
+
240
+ it 'prints the test result and line number from test case file on failure' do
241
+ tc = Beaker::TestCase.new( hosts, options[:logger], options, 'path_to_test_file.rb')
242
+ ex = StandardError.new('failed')
243
+ allow(ex).to receive(:backtrace).and_return(['path_to_test_file.rb line 1 - blah'])
244
+ tc.instance_variable_set(:@exception, ex)
245
+ test_suite_result.add_test_case( tc )
246
+
247
+ expect(options[:logger]).to receive(:notify).with(/Test line:/)
248
+ expect{ test_suite_result.print_test_result(tc) }.to_not raise_error
249
+ end
250
+ end
251
+
229
252
  describe '#write_junit_xml' do
230
253
  let(:options) { make_opts.merge({:logger => double().as_null_object,
231
254
  'name' => create_files(@files),
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: 2.47.1
4
+ version: 2.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-15 00:00:00.000000000 Z
11
+ date: 2016-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -108,62 +108,6 @@ dependencies:
108
108
  - - ! '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: markdown
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - ! '>='
116
- - !ruby/object:Gem::Version
117
- version: '0'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - ! '>='
123
- - !ruby/object:Gem::Version
124
- version: '0'
125
- - !ruby/object:Gem::Dependency
126
- name: thin
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ! '>='
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ! '>='
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
- - !ruby/object:Gem::Dependency
140
- name: activesupport
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - ~>
144
- - !ruby/object:Gem::Version
145
- version: '4.2'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - ~>
151
- - !ruby/object:Gem::Version
152
- version: '4.2'
153
- - !ruby/object:Gem::Dependency
154
- name: rack
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - ~>
158
- - !ruby/object:Gem::Version
159
- version: '1.6'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - ~>
165
- - !ruby/object:Gem::Version
166
- version: '1.6'
167
111
  - !ruby/object:Gem::Dependency
168
112
  name: minitest
169
113
  requirement: !ruby/object:Gem::Requirement
@@ -409,7 +353,7 @@ dependencies:
409
353
  - !ruby/object:Gem::Version
410
354
  version: 0.9.5
411
355
  - !ruby/object:Gem::Dependency
412
- name: aws-sdk
356
+ name: aws-sdk-v1
413
357
  requirement: !ruby/object:Gem::Requirement
414
358
  requirements:
415
359
  - - ~>
@@ -584,6 +528,7 @@ files:
584
528
  - acceptance/tests/base/README.md
585
529
  - acceptance/tests/base/dsl/helpers/configuration_test.rb
586
530
  - acceptance/tests/base/dsl/helpers/host_helpers/add_system32_hosts_entry_test.rb
531
+ - acceptance/tests/base/dsl/helpers/host_helpers/archive_file_from_test.rb
587
532
  - acceptance/tests/base/dsl/helpers/host_helpers/backup_the_file_test.rb
588
533
  - acceptance/tests/base/dsl/helpers/host_helpers/check_for_package_test.rb
589
534
  - acceptance/tests/base/dsl/helpers/host_helpers/create_remote_file_test.rb
@@ -612,54 +557,57 @@ files:
612
557
  - acceptance/tests/base/packages_unix.rb
613
558
  - acceptance/tests/base/test_suite/export.rb
614
559
  - acceptance/tests/hypervisor/communication_test.rb
560
+ - acceptance/tests/install/from_file.rb
615
561
  - acceptance/tests/load_path_bootstrap.rb
616
562
  - acceptance/tests/puppet/README.md
617
563
  - acceptance/tests/puppet/install_smoke_test.rb
564
+ - acceptance/tests/puppet/stub_host.rb
618
565
  - acceptance/tests/puppet/web_helpers_test.rb
619
566
  - acceptance/tests/puppet/with_puppet_running_on.rb
620
567
  - beaker.gemspec
621
568
  - bin/beaker
622
- - docs/Access-the-Live-Test-Console-with-Pry.md
623
- - docs/Argument-Processing-and-Precedence.md
624
- - docs/Beaker-Installation.md
625
- - docs/Beaker-Libraries.md
626
- - docs/Beaker-Recipes.md
627
- - docs/Beaker-Test-Tagging.md
628
- - docs/Beaker-with-Masterless-Puppet.md
629
- - docs/Creating-A-Test-Environment.md
630
- - docs/How-To-Beaker.md
631
- - docs/How-To-Use-User-Password-Authentication-with-Beaker.md
632
- - docs/How-to-Write-a-Beaker-Test-for-a-Module.md
633
- - docs/Lets-Write-a-Test.md
634
569
  - docs/README.md
635
- - docs/Roles-What-Are-They.md
636
- - docs/Shared-Options-for-Executing-Beaker-Commands.md
637
- - docs/The-Beaker-DSL.md
638
- - docs/The-Command-Line.md
639
- - docs/Types,-Puppet-4,-and-the-All-In-One-Agent.md
640
- - docs/beaker-vs.-beaker-rspec.md
641
- - docs/dsl/confine.md
642
- - docs/dsl/platform_specific_tag_confines.md
643
- - docs/hosts/README.md
644
- - docs/hosts/cisco.md
645
- - docs/hosts/eos.md
570
+ - docs/concepts/argument_processing_and_precedence.md
571
+ - docs/concepts/beaker_libraries.md
572
+ - docs/concepts/beaker_vs_beaker_rspec.md
573
+ - docs/concepts/masterless_puppet.md
574
+ - docs/concepts/roles_what_are_they.md
575
+ - docs/concepts/shared_options_for_executing_beaker_commands.md
576
+ - docs/concepts/test_tagging.md
577
+ - docs/concepts/ticket_process.md
578
+ - docs/concepts/types_puppet_4_and_the_all_in_one_agent.md
579
+ - docs/how_to/access_the_live_test_console_with_pry.md
646
580
  - docs/how_to/change_terminal_output_coloring.md
647
- - docs/hypervisors/README.md
648
- - docs/hypervisors/aws.md
649
- - docs/hypervisors/docker.md
650
- - docs/hypervisors/ec2.md
651
- - docs/hypervisors/google_compute_engine.md
652
- - docs/hypervisors/openstack.md
653
- - docs/hypervisors/solaris.md
654
- - docs/hypervisors/vagrant.md
655
- - docs/hypervisors/vagrant_hosts_file_examples.md
656
- - docs/hypervisors/vmware_fusion.md
657
- - docs/hypervisors/vsphere.md
658
- - docs/meta/README.md
659
- - docs/meta/ticket_process.md
660
- - docs/runner/run_in_parallel.md
661
- - docs/runner/test_run.md
662
- - docs/runner/test_suites.md
581
+ - docs/how_to/confine.md
582
+ - docs/how_to/hosts/README.md
583
+ - docs/how_to/hosts/cisco.md
584
+ - docs/how_to/hosts/eos.md
585
+ - docs/how_to/hypervisors/README.md
586
+ - docs/how_to/hypervisors/aws.md
587
+ - docs/how_to/hypervisors/docker.md
588
+ - docs/how_to/hypervisors/ec2.md
589
+ - docs/how_to/hypervisors/google_compute_engine.md
590
+ - docs/how_to/hypervisors/openstack.md
591
+ - docs/how_to/hypervisors/solaris.md
592
+ - docs/how_to/hypervisors/vagrant.md
593
+ - docs/how_to/hypervisors/vagrant_hosts_file_examples.md
594
+ - docs/how_to/hypervisors/vmware_fusion.md
595
+ - docs/how_to/hypervisors/vsphere.md
596
+ - docs/how_to/platform_specific_tag_confines.md
597
+ - docs/how_to/preserve_hosts.md
598
+ - docs/how_to/rake_tasks.md
599
+ - docs/how_to/recipes.md
600
+ - docs/how_to/run_in_parallel.md
601
+ - docs/how_to/the_beaker_dsl.md
602
+ - docs/how_to/use_user_password_authentication.md
603
+ - docs/how_to/write_a_beaker_test_for_a_module.md
604
+ - docs/tutorials/creating_a_test_environment.md
605
+ - docs/tutorials/how_to_beaker.md
606
+ - docs/tutorials/installation.md
607
+ - docs/tutorials/lets_write_a_test.md
608
+ - docs/tutorials/test_run.md
609
+ - docs/tutorials/test_suites.md
610
+ - docs/tutorials/the_command_line.md
663
611
  - ext/completion/beaker-completion.bash
664
612
  - lib/beaker.rb
665
613
  - lib/beaker/cli.rb
@@ -886,4 +834,3 @@ signing_key:
886
834
  specification_version: 4
887
835
  summary: Let's test Puppet!
888
836
  test_files: []
889
- has_rdoc:
@@ -1,6 +0,0 @@
1
- * [Beaker Installation](Beaker-Installation.md)
2
- * [Creating A Test Environment](Creating-A-Test-Environment.md)
3
- * [The Command Line](The-Command-Line.md)
4
- * [The Beaker DSL](The-Beaker-DSL.md)
5
- * [Let's Write a Test!](Lets-Write-a-Test.md)
6
- * [Access The Live Test Console with Pry](Access-the-Live-Test-Console-with-Pry.md)
data/docs/meta/README.md DELETED
@@ -1,6 +0,0 @@
1
- The meta folder contains docs not about how to **use** Beaker, but how to
2
- deal with Beaker in other ways, such as how to **change** it.
3
-
4
- **Table of Contents**
5
-
6
- - [Ticket Process](ticket_process.md)