Skip to content

Commit 8b79b20

Browse files
committed
Removed test cases with implicit array
1 parent d829738 commit 8b79b20

File tree

5 files changed

+0
-31
lines changed

5 files changed

+0
-31
lines changed

tests/divide.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,5 @@
195195
"rule": { "/": [{ "val": "arr" }] },
196196
"error": { "type": "NaN" },
197197
"data": {"arr": [100, 4, 5]}
198-
},
199-
{
200-
"description": "Divide Operator with val resulting in Array should divide sequentially",
201-
"rule": { "/": { "val": "arr" } },
202-
"result": 5,
203-
"data": {"arr": [100, 4, 5]},
204-
"decimal": false
205198
}
206199
]

tests/minus.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,5 @@
138138
"rule": { "-": [{ "val": "arr" }] },
139139
"error": { "type": "NaN" },
140140
"data": {"arr": [1, 2, 3, 4]}
141-
},
142-
{
143-
"description": "Minus Operator with val resulting in Array should subtract sequentially",
144-
"rule": { "-": { "val": "arr" } },
145-
"result": -8,
146-
"data": {"arr": [1, 2, 3, 4]}
147141
}
148142
]

tests/modulo.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,5 @@
193193
"rule": { "%": [{ "val": "arr" }] },
194194
"error": { "type": "NaN" },
195195
"data": {"arr": [10, 6, 4]}
196-
},
197-
{
198-
"description": "Modulo Operator with val resulting in Array should modulo sequentially",
199-
"rule": { "%": { "val": "arr" } },
200-
"result": 2,
201-
"data": {"arr": [10, 6, 4]}
202196
}
203197
]

tests/multiply.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,5 @@
174174
"rule": { "*": [{ "val": "arr" }] },
175175
"error": { "type": "NaN" },
176176
"data": {"arr": [1, 2, 3, 4]}
177-
},
178-
{
179-
"description": "Multiply Operator with val resulting in Array should multiply",
180-
"rule": { "*": { "val": "arr" } },
181-
"result": 24,
182-
"data": {"arr": [1, 2, 3, 4]}
183177
}
184178
]

tests/plus.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,5 @@
200200
"rule": { "+": [{ "val": "arr" }] },
201201
"error": { "type": "NaN" },
202202
"data": {"arr": [1, 2, 3, 4]}
203-
},
204-
{
205-
"description": "Plus Operator with val resulting in Array should sum",
206-
"rule": { "+": { "val": "arr" } },
207-
"result": 10,
208-
"data": {"arr": [1, 2, 3, 4]}
209203
}
210204
]

0 commit comments

Comments
 (0)