kitchen-digitalocean 0.9.4 → 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41d6c0d3d8ac28c78614161f6cade375d4cc7db2
|
4
|
+
data.tar.gz: 2e845d50c2c8321cdebc379a40643feeafe4eed5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cca084e2f20bc441eac31e425c549669cf08db93780fe171cad9e421b5435684c0bf45a79db28c2384c058d751ae6bbf1088a8bd83e1cd6f15b12da3d61afca7
|
7
|
+
data.tar.gz: 47da3af06e349b6cb5fdaa3919a5a38b087003a77a612163ef4734525e1dbea287f9127e284d8cc6390ecb67b474d22c511cd28cc7bedf0f987d5ad83a2f591f
|
data/CHANGELOG.md
CHANGED
@@ -170,21 +170,21 @@ module Kitchen
|
|
170
170
|
def platform_to_slug_mapping
|
171
171
|
{
|
172
172
|
'centos-5.10' => 'centos-5-8-x64',
|
173
|
-
'centos-6.7' => 'centos-6-
|
174
|
-
'centos-7.1' => 'centos-7-
|
175
|
-
'coreos-835.9.0' => 'coreos-
|
176
|
-
'coreos-877.1.0' => 'coreos-
|
177
|
-
'coreos-891.0.0' => 'coreos-
|
173
|
+
'centos-6.7' => 'centos-6-5-x64',
|
174
|
+
'centos-7.1' => 'centos-7-0-x64',
|
175
|
+
'coreos-835.9.0' => 'coreos-stable-x64',
|
176
|
+
'coreos-877.1.0' => 'coreos-beta-x64',
|
177
|
+
'coreos-891.0.0' => 'coreos-alpha-x64',
|
178
178
|
'debian-6.0' => 'debian-6-0-x64',
|
179
|
-
'debian-7.9' => 'debian-7-
|
180
|
-
'debian-8.2' => 'debian-8-
|
179
|
+
'debian-7.9' => 'debian-7-0-x64',
|
180
|
+
'debian-8.2' => 'debian-8-x64',
|
181
181
|
'fedora-21' => 'fedora-21-x64',
|
182
182
|
'fedora-22' => 'fedora-22-x64',
|
183
183
|
'fedora-23' => 'fedora-23-x64',
|
184
184
|
'freebsd-10.1' => 'freebsd-10-1-x64',
|
185
185
|
'freebsd-10.2' => 'freebsd-10-2-x64',
|
186
|
-
'ubuntu-12.04
|
187
|
-
'ubuntu-14.04
|
186
|
+
'ubuntu-12.04' => 'ubuntu-12-04-x64',
|
187
|
+
'ubuntu-14.04' => 'ubuntu-14-04-x64',
|
188
188
|
'ubuntu-15.04' => 'ubuntu-15-04-x64',
|
189
189
|
'ubuntu-15.10' => 'ubuntu-15-10-x64'
|
190
190
|
}
|
@@ -77,19 +77,19 @@ describe Kitchen::Driver::Digitalocean do
|
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
80
|
-
context 'name is ubuntu-14-04-
|
81
|
-
let(:platform_name) { 'ubuntu-14-04-
|
80
|
+
context 'name is ubuntu-14-04-x64' do
|
81
|
+
let(:platform_name) { 'ubuntu-14-04-x64' }
|
82
82
|
|
83
83
|
it 'defaults to the correct image ID' do
|
84
|
-
expect(driver[:image]).to eq('ubuntu-14-04-
|
84
|
+
expect(driver[:image]).to eq('ubuntu-14-04-x64')
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
88
88
|
context 'platform name matches a known platform => slug mapping' do
|
89
|
-
let(:platform_name) { 'ubuntu-14.04
|
89
|
+
let(:platform_name) { 'ubuntu-14.04' }
|
90
90
|
|
91
91
|
it 'matches the correct image slug' do
|
92
|
-
expect(driver[:image]).to eq('ubuntu-14-04-
|
92
|
+
expect(driver[:image]).to eq('ubuntu-14-04-x64')
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|