rspec-puppet 2.7.7 → 2.7.8
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/rspec-puppet/support.rb +5 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd000960b92cf4b8a24b042dd07d4d91bd333b98f83a554e6b7bb8cf776deb40
|
4
|
+
data.tar.gz: ab87e51803b7ec899ca1389041f00b39a8766b76a141a673e3058c3ed22bc677
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1730e3df44bebb5b49f9cd9c83ae1aac317398568002e9777d25c4a34105be371e5f9683ccb07cdd36fb6891aaee1a045837e9a9e5be034e8bbb4b5acf83cc6
|
7
|
+
data.tar.gz: 29056e119989fdaf2e16eea9bb7208caf5b551431098194ed9f4f42697ef512d1ef47594fb3c9d3f1a2f2aa7af655be8ca76a3de45720bf824a719ba17a860d1
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. This
|
3
3
|
project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [2.7.8]
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
* Fix cross-platform testing for Puppet >= 6.9.0 when there is no `ipaddress6`
|
9
|
+
fact defined.
|
10
|
+
|
5
11
|
## [2.7.7]
|
6
12
|
|
7
13
|
### Fixed
|
data/lib/rspec-puppet/support.rb
CHANGED
@@ -226,10 +226,11 @@ module RSpec::Puppet
|
|
226
226
|
}
|
227
227
|
|
228
228
|
node_facts = {
|
229
|
-
'hostname'
|
230
|
-
'fqdn'
|
231
|
-
'domain'
|
232
|
-
'clientcert'
|
229
|
+
'hostname' => node.split('.').first,
|
230
|
+
'fqdn' => node,
|
231
|
+
'domain' => node.split('.', 2).last,
|
232
|
+
'clientcert' => node,
|
233
|
+
'ipaddress6' => 'FE80:0000:0000:0000:AAAA:AAAA:AAAA',
|
233
234
|
}
|
234
235
|
|
235
236
|
networking_facts = {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-puppet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Sharpe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|