puppetlabs_spec_helper 6.0.0 → 6.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -10
- data/lib/puppetlabs_spec_helper/version.rb +1 -1
- metadata +4 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51f58ff9c9735e41876b890dce7baaee9f5bd6789dd343976cef895f10871c13
|
4
|
+
data.tar.gz: 026c481d1ed51f4df3a0940d8144c8ba81ec94a9c88e11b9c4884397e23057f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ad8e6b070da2e8a84504039d52b952ecd2f81dcfc0146e91944732229efbab2d436b720895e207dc3fdc0e67b4b4d7ba0e0d7bcac799a4b90de793dfd362e30
|
7
|
+
data.tar.gz: 93e4bfd27ba5289d2edc1c3902c3f7026f8111c64335835b38bacde6b08d24e2463f28123b683ce7364f25c4113a67c6ef14babe744aacde38461a406483f68b
|
data/README.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
Puppet Labs Spec Helper
|
2
2
|
=======================
|
3
3
|
|
4
|
+
[![Code Owners](https://img.shields.io/badge/owners-DevX--team-blue)](https://github.com/puppetlabs/puppetlabs_spec_helper/blob/main/CODEOWNERS)
|
5
|
+
![ci](https://github.com/puppetlabs/puppetlabs_spec_helper/actions/workflows/ci.yml/badge.svg)
|
6
|
+
![GitHub release (latest by date)](https://img.shields.io/github/v/release/puppetlabs/puppetlabs_spec_helper)
|
7
|
+
|
4
8
|
The Short Version
|
5
9
|
-----------------
|
6
10
|
|
@@ -230,8 +234,8 @@ Add `firewall` and `stdlib` as required module fixtures:
|
|
230
234
|
```yaml
|
231
235
|
fixtures:
|
232
236
|
repositories:
|
233
|
-
firewall: "
|
234
|
-
stdlib: "
|
237
|
+
firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
|
238
|
+
stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
|
235
239
|
```
|
236
240
|
|
237
241
|
Put a supplementary repository at a different location
|
@@ -239,8 +243,8 @@ Put a supplementary repository at a different location
|
|
239
243
|
```yaml
|
240
244
|
fixtures:
|
241
245
|
repositories:
|
242
|
-
firewall: "
|
243
|
-
stdlib: "
|
246
|
+
firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
|
247
|
+
stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
|
244
248
|
control_repo:
|
245
249
|
repo: "https://github.com/puppetlabs/control-repo"
|
246
250
|
target: "spec/fixtures/control_repos"
|
@@ -251,9 +255,9 @@ Specify that the git tag `2.4.2` of `stdlib` should be checked out:
|
|
251
255
|
```yaml
|
252
256
|
fixtures:
|
253
257
|
repositories:
|
254
|
-
firewall: "
|
258
|
+
firewall: "https://github.com/puppetlabs/puppetlabs-firewall.git"
|
255
259
|
stdlib:
|
256
|
-
repo: "
|
260
|
+
repo: "https://github.com/puppetlabs/puppetlabs-stdlib.git"
|
257
261
|
ref: "2.6.0"
|
258
262
|
```
|
259
263
|
|
@@ -263,7 +267,7 @@ Only install the `yumrepo_core` module when testing against Puppet 7 or greater:
|
|
263
267
|
fixtures:
|
264
268
|
repositories:
|
265
269
|
yumrepo_core:
|
266
|
-
repo: "
|
270
|
+
repo: "https://github.com/puppetlabs/puppetlabs-yumrepo_core.git"
|
267
271
|
puppet_version: ">= 6.0.0"
|
268
272
|
```
|
269
273
|
|
@@ -273,7 +277,7 @@ Move manifests and siblings to root directory when they are inside a `code` dire
|
|
273
277
|
fixtures:
|
274
278
|
repositories:
|
275
279
|
stdlib:
|
276
|
-
repo: "
|
280
|
+
repo: "https://github.com/puppetlabs/puppetlabs-extradirectory.git"
|
277
281
|
subdir: "code"
|
278
282
|
```
|
279
283
|
|
@@ -299,7 +303,7 @@ fixtures:
|
|
299
303
|
flags: "--module_repository https://my_repo.com"
|
300
304
|
repositories:
|
301
305
|
firewall:
|
302
|
-
repo: "
|
306
|
+
repo: "https://github.com/puppetlabs/puppetlabs-firewall.git"
|
303
307
|
ref: "2.6.0"
|
304
308
|
flags: "--verbose"
|
305
309
|
```
|
@@ -317,7 +321,7 @@ fixtures:
|
|
317
321
|
ref: "2.6.0"
|
318
322
|
repositories:
|
319
323
|
firewall:
|
320
|
-
repo: "
|
324
|
+
repo: "https://github.com/puppetlabs/puppetlabs-firewall.git"
|
321
325
|
ref: "2.6.0"
|
322
326
|
```
|
323
327
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppetlabs_spec_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet, Inc.
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: mocha
|
@@ -49,22 +49,16 @@ dependencies:
|
|
49
49
|
name: puppet-lint
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 3.0.0
|
55
52
|
- - "~>"
|
56
53
|
- !ruby/object:Gem::Version
|
57
|
-
version: 4.0
|
54
|
+
version: '4.0'
|
58
55
|
type: :runtime
|
59
56
|
prerelease: false
|
60
57
|
version_requirements: !ruby/object:Gem::Requirement
|
61
58
|
requirements:
|
62
|
-
- - ">="
|
63
|
-
- !ruby/object:Gem::Version
|
64
|
-
version: 3.0.0
|
65
59
|
- - "~>"
|
66
60
|
- !ruby/object:Gem::Version
|
67
|
-
version: 4.0
|
61
|
+
version: '4.0'
|
68
62
|
- !ruby/object:Gem::Dependency
|
69
63
|
name: puppet-syntax
|
70
64
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,9 +94,6 @@ dependencies:
|
|
100
94
|
- - ">="
|
101
95
|
- !ruby/object:Gem::Version
|
102
96
|
version: '2.0'
|
103
|
-
- - "~>"
|
104
|
-
- !ruby/object:Gem::Version
|
105
|
-
version: 3.0.0.rc
|
106
97
|
type: :runtime
|
107
98
|
prerelease: false
|
108
99
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -110,9 +101,6 @@ dependencies:
|
|
110
101
|
- - ">="
|
111
102
|
- !ruby/object:Gem::Version
|
112
103
|
version: '2.0'
|
113
|
-
- - "~>"
|
114
|
-
- !ruby/object:Gem::Version
|
115
|
-
version: 3.0.0.rc
|
116
104
|
description: Contains rake tasks and a standard spec_helper for running spec tests
|
117
105
|
on puppet modules.
|
118
106
|
email:
|