rspec-system 2.5.0 → 2.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +7 -0
- data/lib/rspec-system/node_set/vsphere.rb +10 -0
- data/rspec-system.gemspec +1 -1
- data/spec/system/base_spec.rb +11 -0
- metadata +3 -1
data/CHANGELOG.md
CHANGED
@@ -257,6 +257,16 @@ module RSpecSystem
|
|
257
257
|
end
|
258
258
|
time3 = Time.now
|
259
259
|
log.info "#{k}> Took #{time3 - start_time} seconds for instance to be ready"
|
260
|
+
|
261
|
+
######################
|
262
|
+
# Do initial box setup
|
263
|
+
######################
|
264
|
+
hosts = <<-EOS
|
265
|
+
127.0.0.1 localhost localhost.localdomain
|
266
|
+
#{ipaddress} #{k}
|
267
|
+
EOS
|
268
|
+
shell(:n => k, :c => "echo '#{hosts}' > /etc/hosts")
|
269
|
+
shell(:n => k, :c => "hostname #{k}")
|
260
270
|
end
|
261
271
|
end
|
262
272
|
|
data/rspec-system.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-system
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -179,6 +179,7 @@ files:
|
|
179
179
|
- spec/fixtures/nodeset_example5.yml
|
180
180
|
- spec/spec_helper.rb
|
181
181
|
- spec/spec_helper_system.rb
|
182
|
+
- spec/system/base_spec.rb
|
182
183
|
- spec/system/rcp_spec.rb
|
183
184
|
- spec/system/shell_spec.rb
|
184
185
|
- spec/unit/helper_spec.rb
|
@@ -213,6 +214,7 @@ signing_key:
|
|
213
214
|
specification_version: 3
|
214
215
|
summary: System testing with rspec
|
215
216
|
test_files:
|
217
|
+
- spec/system/base_spec.rb
|
216
218
|
- spec/system/rcp_spec.rb
|
217
219
|
- spec/system/shell_spec.rb
|
218
220
|
- spec/unit/helper_spec.rb
|