vcloud-tools-tester 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 0.1.3 (2014-07-15)
|
|
2
|
+
|
|
3
|
+
Bugfixes:
|
|
4
|
+
|
|
5
|
+
- Fixes issue where we were not receiving parameters correctly in cases
|
|
6
|
+
where networks did not already exist.
|
|
7
|
+
|
|
1
8
|
## 0.1.2 (2014-07-14)
|
|
2
9
|
|
|
3
10
|
Make dependency on vCloud Core less restrictive; allow any version in the 0.x series.
|
|
@@ -98,12 +98,11 @@ module Vcloud
|
|
|
98
98
|
raise "No fixtures present" if @fixtures.empty?
|
|
99
99
|
|
|
100
100
|
@fixture_params = {}
|
|
101
|
-
expected_networks = @expected_fixtures_config[:networks]
|
|
102
101
|
|
|
103
102
|
@fixtures.each do |fixture|
|
|
104
103
|
case fixture
|
|
105
|
-
when ::Fog::Compute::VcloudDirector::Network
|
|
106
|
-
|
|
104
|
+
when ::Fog::Compute::VcloudDirector::Network, Vcloud::Core::OrgVdcNetwork
|
|
105
|
+
@expected_fixtures_config[:networks].each do |network_ref, expected_network_config|
|
|
107
106
|
if expected_network_config[:name] == fixture.name
|
|
108
107
|
@fixture_params["#{network_ref}_id"] = fixture.id
|
|
109
108
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vcloud-tools-tester
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-07-
|
|
12
|
+
date: 2014-07-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: gem_publisher
|
|
@@ -175,7 +175,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
175
175
|
version: '0'
|
|
176
176
|
segments:
|
|
177
177
|
- 0
|
|
178
|
-
hash:
|
|
178
|
+
hash: -3890471809782516603
|
|
179
179
|
requirements: []
|
|
180
180
|
rubyforge_project:
|
|
181
181
|
rubygems_version: 1.8.23
|