113
113
"rule" : { "!==" : [3 , 3 , { "throw" : " Not Lazy" }] },
114
114
"data" : {},
115
115
"result" : false
116
+ },
117
+ " Single Operand < Tests" ,
118
+ {
119
+ "description" : " < with 1 argument" ,
120
+ "rule" : { "<" : [1 ] },
121
+ "data" : {},
122
+ "error" : { "type" : " Invalid Arguments" }
123
+ },
124
+ {
125
+ "description" : " > with 1 argument" ,
126
+ "rule" : { ">" : [1 ] },
127
+ "data" : {},
128
+ "error" : { "type" : " Invalid Arguments" }
129
+ },
130
+ {
131
+ "description" : " >= with 1 argument" ,
132
+ "rule" : { ">=" : [1 ] },
133
+ "data" : {},
134
+ "error" : { "type" : " Invalid Arguments" }
135
+ },
136
+ {
137
+ "description" : " == with 1 argument" ,
138
+ "rule" : { "==" : [1 ] },
139
+ "data" : {},
140
+ "error" : { "type" : " Invalid Arguments" }
141
+ },
142
+ {
143
+ "description" : " != with 1 argument" ,
144
+ "rule" : { "!=" : [1 ] },
145
+ "data" : {},
146
+ "error" : { "type" : " Invalid Arguments" }
147
+ },
148
+ {
149
+ "description" : " === with 1 argument" ,
150
+ "rule" : { "===" : [1 ] },
151
+ "data" : {},
152
+ "error" : { "type" : " Invalid Arguments" }
153
+ },
154
+ {
155
+ "description" : " !== with 1 argument" ,
156
+ "rule" : { "!==" : [1 ] },
157
+ "data" : {},
158
+ "error" : { "type" : " Invalid Arguments" }
159
+ },
160
+ " Direct Operand Tests" ,
161
+ {
162
+ "description" : " < with direct argument" ,
163
+ "rule" : { "<" : 1 },
164
+ "data" : {},
165
+ "error" : { "type" : " Invalid Arguments" }
166
+ },
167
+ {
168
+ "description" : " > with direct argument" ,
169
+ "rule" : { ">" : 1 },
170
+ "data" : {},
171
+ "error" : { "type" : " Invalid Arguments" }
172
+ },
173
+ {
174
+ "description" : " >= with direct argument" ,
175
+ "rule" : { ">=" : 1 },
176
+ "data" : {},
177
+ "error" : { "type" : " Invalid Arguments" }
178
+ },
179
+ {
180
+ "description" : " == with direct argument" ,
181
+ "rule" : { "==" : 1 },
182
+ "data" : {},
183
+ "error" : { "type" : " Invalid Arguments" }
184
+ },
185
+ {
186
+ "description" : " != with direct argument" ,
187
+ "rule" : { "!=" : 1 },
188
+ "data" : {},
189
+ "error" : { "type" : " Invalid Arguments" }
190
+ },
191
+ {
192
+ "description" : " === with direct argument" ,
193
+ "rule" : { "===" : 1 },
194
+ "data" : {},
195
+ "error" : { "type" : " Invalid Arguments" }
196
+ },
197
+ {
198
+ "description" : " !== with direct argument" ,
199
+ "rule" : { "!==" : 1 },
200
+ "data" : {},
201
+ "error" : { "type" : " Invalid Arguments" }
116
202
}
117
203
]
0 commit comments