We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047a176 commit bb03c89Copy full SHA for bb03c89
features/types.feature
@@ -4,15 +4,21 @@ Feature: Types
4
"""
5
{
6
"array": [],
7
+ "false": true,
8
"float": 10.0,
9
"hash": {},
10
"integer": 10,
- "string": "json_spec"
11
+ "string": "json_spec",
12
+ "true": true
13
}
14
15
When I get the JSON
16
Then the JSON should be a hash
17
And the JSON at "array" should be an array
18
+ And the JSON at "false" should be a boolean
19
And the JSON at "float" should be a float
20
And the JSON at "hash" should be a hash
21
+ And the JSON at "hash" should be an object
22
And the JSON at "integer" should be an integer
23
+ And the JSON at "string" should be a string
24
+ And the JSON at "true" should be a boolean
0 commit comments