cucumber-http 0.8.1 → 0.8.2
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/lib/cucumber/http/http_steps.rb +2 -2
- data/lib/cucumber/http/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29189bbeff952cb0537f6b6b5cd6c0529df643c0519fb9eaeaf3e8234c37fdc6
|
|
4
|
+
data.tar.gz: 4e410f0c7c25270dc9000e93ce21ca9fdfb77b15071768daf03e369edc7d68f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e8576eb8db90d0617506defd6bb736eae08457abaa5d47480fd09c44aea1b159f0dffe7ed287e951725b3916fa0147d78d695f78e6496c87dad0d800b795795
|
|
7
|
+
data.tar.gz: a9fdab9a71c4beedcd930fefb97b7b47301088ae74ca936b82b0672dc27c7bcbdae3d20446bc6128856c8e3cee93b7909c5acc9d0c7947b387c1dfc25a4622fb
|
|
@@ -114,11 +114,11 @@ When /^(?:I )?keep the value of the (?:JSON|json)(?: response)?(?: at "(.*)")? a
|
|
|
114
114
|
JsonSpec.memorize(key, parse_json(last_json, path))
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
-
Then 'the response status should be
|
|
117
|
+
Then 'the response status should be {int}' do |status_code|
|
|
118
118
|
expect(response[:status]).to eq(status_code)
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
-
Then 'the response status should not be
|
|
121
|
+
Then 'the response status should not be {int}' do |status_code|
|
|
122
122
|
expect(response[:status]).not_to eq(status_code)
|
|
123
123
|
end
|
|
124
124
|
|