pdqtest 0.1.14 → 0.1.15
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/.travis.yml +2 -2
- data/README.md +10 -0
- data/lib/pdqtest/puppet.rb +1 -1
- data/lib/pdqtest/skeleton.rb +1 -0
- data/lib/pdqtest/version.rb +1 -1
- data/res/skeleton/Gemfile +5 -0
- data/res/skeleton/Makefile +3 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0d353b261cba8bb08ccbb67f871cc2a813c9b37
|
|
4
|
+
data.tar.gz: 6d4ed2b02bea498009f70d4b5dc4bb4f75257af5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd93da962bce72087e77321fa7871be381cc984bd3d1de09512c36b23a5ba42a348f29df5f8e1daeed9b18a130b0e905c756fe321e8ebb1223a488a64f83e7f2
|
|
7
|
+
data.tar.gz: ead0de74af3969b5e968137bc678cbedd309b92cab154bbe838776e2e81608c2a9dcee2a4189c2e8939438ea18c21fca077d478e8f1aeed8c8ecbb9e4192ef49
|
data/.travis.yml
CHANGED
|
@@ -4,5 +4,5 @@ services:
|
|
|
4
4
|
- docker
|
|
5
5
|
rvm:
|
|
6
6
|
- 2.2.2
|
|
7
|
-
before_install: gem install bundler -v 1.13.6
|
|
8
|
-
script: "bundle exec rake spec"
|
|
7
|
+
before_install: gem install bundler -v 1.13.6
|
|
8
|
+
script: "bundle exec pdqtest setup && bundle exec rake spec"
|
data/README.md
CHANGED
|
@@ -35,6 +35,15 @@ This will install PDQTest into the `Gemfile` and will generate an example set of
|
|
|
35
35
|
|
|
36
36
|
## Running tests
|
|
37
37
|
|
|
38
|
+
### PDQTest preparation
|
|
39
|
+
PDQTest needs to download a Docker image before running tests:
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
bundle exec pdqtest setup
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
This image is updated periodically, the above command will download the appropriate image for the version of `pdqtest` being used.
|
|
46
|
+
|
|
38
47
|
### Module dependencies/.fixtures.yml
|
|
39
48
|
Ordinarily, there is no need to maintain a `.fixtures.yml` file. Dependencies on public forge modules should be specified in your module's `metadata.json` file.
|
|
40
49
|
|
|
@@ -91,6 +100,7 @@ You should use pdqtest if you find it increases your productivity and enriches y
|
|
|
91
100
|
|
|
92
101
|
## Troubleshooting
|
|
93
102
|
* If you can't find the `pdqtest` command and your using `rbenv` be sure to run `rbenv rehash` after installing the gem to create the necessary symlinks
|
|
103
|
+
* Don't forget to run `pdqtest setup` before your first `pdqtest` run to download/update the Docker image
|
|
94
104
|
|
|
95
105
|
## Support
|
|
96
106
|
This software is not supported by Puppet, Inc. Use at your own risk.
|
data/lib/pdqtest/puppet.rb
CHANGED
data/lib/pdqtest/skeleton.rb
CHANGED
data/lib/pdqtest/version.rb
CHANGED
data/res/skeleton/Gemfile
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pdqtest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geoff Williams
|
|
@@ -226,6 +226,7 @@ files:
|
|
|
226
226
|
- lib/pdqtest/version.rb
|
|
227
227
|
- pdqtest.gemspec
|
|
228
228
|
- res/skeleton/Gemfile
|
|
229
|
+
- res/skeleton/Makefile
|
|
229
230
|
- res/skeleton/Rakefile
|
|
230
231
|
- res/skeleton/dot_gitignore
|
|
231
232
|
- res/skeleton/dot_rspec
|