cucumber-rest-bdd 0.3.6.pre.94 → 0.3.6.pre.95
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/README.md +15 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a70afd68cb1cf05fa87a26f4bad0b5ab0dae7ad8
|
|
4
|
+
data.tar.gz: c1e8f06050f8c0a2222d594d7d0b201adc9dd28f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22910901b0dc00b88dc3691d765b49070ba8019d92b6fbd0d47229f3fcd122da0fb74cca9a815473928afae9c53d34034b96d74ba9c5c91ed0b972eb09b90dcc
|
|
7
|
+
data.tar.gz: 5162a542efddc588e35ac9043638ccbca2b2f2d935ed34f1afd240d9630d8e4654163780d1eec58a85c0791c3528af1ab6bf43be2d7345d1cdbd50c8c805a06d
|
data/README.md
CHANGED
|
@@ -13,6 +13,21 @@ This is based from: http://gregbee.ch/blog/effective-api-testing-with-cucumber
|
|
|
13
13
|
|
|
14
14
|
A list of [Steps](STEPS.md) shows the comparison between Behavioural and Functional tests provided by this package.
|
|
15
15
|
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
You can include this as a gem in your features, or run directly through docker
|
|
19
|
+
|
|
20
|
+
**Gem:**
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
$ gem install cucumber-rest-bdd
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Docker:**
|
|
27
|
+
```bash
|
|
28
|
+
$ docker run --rm -v $(pwd):/opt/src -e endpoint=http://server/ graze/cucumber-rest-bdd
|
|
29
|
+
```
|
|
30
|
+
|
|
16
31
|
## Configuration
|
|
17
32
|
|
|
18
33
|
The following environment variables modify how this will operate:
|