1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
Feature: Memory
Background:
Given the JSON is:
"""
{
"array": [
],
"false": false,
"float": 10.0,
"hash": {
},
"integer": 10,
"null": null,
"string": "json_spec",
"true": true
}
"""
And I get the JSON
Scenario: Entire JSON
When I keep the JSON as "JSON"
Then the JSON should be %{JSON}
And the JSON should be:
"""
%{JSON}
"""
Scenario: String
When I keep the JSON at "string" as "STRING"
Then the JSON at "string" should be %{STRING}
And the JSON should be:
"""
{
"array": [
],
"false": false,
"float": 10.0,
"hash": {
},
"integer": 10,
"null": null,
"string": %{STRING},
"true": true
}
"""
Scenario: Integer
When I keep the JSON at "integer" as "INTEGER"
Then the JSON at "integer" should be %{INTEGER}
And the JSON should be:
"""
{
"array": [
],
"false": false,
"float": 10.0,
"hash": {
},
"integer": %{INTEGER},
"null": null,
"string": "json_spec",
"true": true
}
"""
Scenario: Float
When I keep the JSON at "float" as "FLOAT"
Then the JSON at "float" should be %{FLOAT}
And the JSON should be:
"""
{
"array": [
],
"false": false,
"float": %{FLOAT},
"hash": {
},
"integer": 10,
"null": null,
"string": "json_spec",
"true": true
}
"""
Scenario: Array
When I keep the JSON at "array" as "ARRAY"
Then the JSON at "array" should be %{ARRAY}
And the JSON should be:
"""
{
"array": %{ARRAY},
"false": false,
"float": 10.0,
"hash": {
},
"integer": 10,
"null": null,
"string": "json_spec",
"true": true
}
"""
Scenario: Hash
When I keep the JSON at "hash" as "HASH"
Then the JSON at "hash" should be %{HASH}
And the JSON should be:
"""
{
"array": [
],
"false": false,
"float": 10.0,
"hash": %{HASH},
"integer": 10,
"null": null,
"string": "json_spec",
"true": true
}
"""
Scenario: True
When I keep the JSON at "true" as "TRUE"
Then the JSON at "true" should be %{TRUE}
And the JSON should be:
"""
{
"array": [
],
"false": false,
"float": 10.0,
"hash": {
},
"integer": 10,
"null": null,
"string": "json_spec",
"true": %{TRUE}
}
"""
Scenario: False
When I keep the JSON at "false" as "FALSE"
Then the JSON at "false" should be %{FALSE}
And the JSON should be:
"""
{
"array": [
],
"false": %{FALSE},
"float": 10.0,
"hash": {
},
"integer": 10,
"null": null,
"string": "json_spec",
"true": true
}
"""
Scenario: Null
When I keep the JSON at "null" as "NULL"
Then the JSON at "null" should be %{NULL}
And the JSON should be:
"""
{
"array": [
],
"false": false,
"float": 10.0,
"hash": {
},
"integer": 10,
"null": %{NULL},
"string": "json_spec",
"true": true
}
"""
Scenario: Table format
When I keep the JSON at "string" as "STRING"
And I keep the JSON at "integer" as "INTEGER"
And I keep the JSON at "float" as "FLOAT"
And I keep the JSON at "array" as "ARRAY"
And I keep the JSON at "hash" as "HASH"
And I keep the JSON at "true" as "TRUE"
And I keep the JSON at "false" as "FALSE"
And I keep the JSON at "null" as "NULL"
Then the JSON should have the following:
| string | %{STRING} |
| integer | %{INTEGER} |
| float | %{FLOAT} |
| array | %{ARRAY} |
| hash | %{HASH} |
| true | %{TRUE} |
| false | %{FALSE} |
| null | %{NULL} |
Scenario: Inclusion
When I keep the JSON at "string" as "STRING"
And I keep the JSON at "integer" as "INTEGER"
And I keep the JSON at "float" as "FLOAT"
And I keep the JSON at "array" as "ARRAY"
And I keep the JSON at "hash" as "HASH"
And I keep the JSON at "true" as "TRUE"
And I keep the JSON at "false" as "FALSE"
And I keep the JSON at "null" as "NULL"
Then the JSON should include %{STRING}
And the JSON should include %{INTEGER}
And the JSON should include %{FLOAT}
And the JSON should include %{ARRAY}
And the JSON should include %{HASH}
And the JSON should include %{TRUE}
And the JSON should include %{FALSE}
And the JSON should include %{NULL}
|