@@ -164,7 +164,7 @@ describe('filter transforms calc:', function() {
164
164
expect ( out [ 0 ] . marker . size ) . toEqual ( 20 , '- marker.size style' ) ;
165
165
}
166
166
167
- it ( '+ *within *' , function ( ) {
167
+ it ( 'with operation *[] *' , function ( ) {
168
168
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
169
169
transforms : [ {
170
170
operation : '[]' ,
@@ -180,7 +180,7 @@ describe('filter transforms calc:', function() {
180
180
) ;
181
181
} ) ;
182
182
183
- it ( '+ *within* + with RHS open ' , function ( ) {
183
+ it ( 'with operation *[)* ' , function ( ) {
184
184
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
185
185
transforms : [ {
186
186
operation : '[)' ,
@@ -192,7 +192,7 @@ describe('filter transforms calc:', function() {
192
192
_assert ( out , [ - 1 , 0 ] , [ 2 , 1 ] , [ 0.2 , 0.1 ] ) ;
193
193
} ) ;
194
194
195
- it ( '+ *within* + with LHS open ' , function ( ) {
195
+ it ( 'with operation *(]* ' , function ( ) {
196
196
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
197
197
transforms : [ {
198
198
operation : '(]' ,
@@ -204,7 +204,7 @@ describe('filter transforms calc:', function() {
204
204
_assert ( out , [ 0 , 1 ] , [ 1 , 2 ] , [ 0.1 , 0.2 ] ) ;
205
205
} ) ;
206
206
207
- it ( '+ *within* + with both sides open ' , function ( ) {
207
+ it ( 'with operation *()* ' , function ( ) {
208
208
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
209
209
transforms : [ {
210
210
operation : '()' ,
@@ -216,7 +216,7 @@ describe('filter transforms calc:', function() {
216
216
_assert ( out , [ 0 ] , [ 1 ] , [ 0.1 ] ) ;
217
217
} ) ;
218
218
219
- it ( '+ *notwithin *' , function ( ) {
219
+ it ( 'with operation *)( *' , function ( ) {
220
220
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
221
221
transforms : [ {
222
222
operation : ')(' ,
@@ -232,7 +232,7 @@ describe('filter transforms calc:', function() {
232
232
) ;
233
233
} ) ;
234
234
235
- it ( '+ *notwithin* with RHS closed ' , function ( ) {
235
+ it ( 'with operation *)[* ' , function ( ) {
236
236
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
237
237
transforms : [ {
238
238
operation : ')[' ,
@@ -248,7 +248,7 @@ describe('filter transforms calc:', function() {
248
248
) ;
249
249
} ) ;
250
250
251
- it ( '+ *notwithin* with LHS closed ' , function ( ) {
251
+ it ( 'with operation *](* ' , function ( ) {
252
252
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
253
253
transforms : [ {
254
254
operation : '](' ,
@@ -264,7 +264,7 @@ describe('filter transforms calc:', function() {
264
264
) ;
265
265
} ) ;
266
266
267
- it ( '+ *notwithin* with both sides closed ' , function ( ) {
267
+ it ( 'with operation *][* ' , function ( ) {
268
268
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
269
269
transforms : [ {
270
270
operation : '][' ,
@@ -280,7 +280,7 @@ describe('filter transforms calc:', function() {
280
280
) ;
281
281
} ) ;
282
282
283
- it ( '+ *in *' , function ( ) {
283
+ it ( 'with operation *{} *' , function ( ) {
284
284
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
285
285
transforms : [ {
286
286
operation : '{}' ,
@@ -296,7 +296,7 @@ describe('filter transforms calc:', function() {
296
296
) ;
297
297
} ) ;
298
298
299
- it ( '+ *notin *' , function ( ) {
299
+ it ( 'with operation *}{ *' , function ( ) {
300
300
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
301
301
transforms : [ {
302
302
operation : '}{' ,
@@ -347,7 +347,7 @@ describe('filter transforms calc:', function() {
347
347
expect ( out [ 0 ] . marker . color ) . toEqual ( 'red' , '- marker.color style' ) ;
348
348
}
349
349
350
- it ( '+ *within *' , function ( ) {
350
+ it ( 'with operation *() *' , function ( ) {
351
351
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
352
352
transforms : [ {
353
353
operation : '()' ,
@@ -359,7 +359,7 @@ describe('filter transforms calc:', function() {
359
359
_assert ( out , [ 'b' ] , [ 2 ] , [ '1' ] ) ;
360
360
} ) ;
361
361
362
- it ( '+ *notwithin *' , function ( ) {
362
+ it ( 'with operation *)( *' , function ( ) {
363
363
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
364
364
transforms : [ {
365
365
operation : ')(' ,
@@ -371,7 +371,7 @@ describe('filter transforms calc:', function() {
371
371
_assert ( out , [ 'd' ] , [ 4 ] , [ '0' ] ) ;
372
372
} ) ;
373
373
374
- it ( 'filters should handle categories + *in *' , function ( ) {
374
+ it ( 'with operation *{} *' , function ( ) {
375
375
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
376
376
transforms : [ {
377
377
operation : '{}' ,
@@ -383,7 +383,7 @@ describe('filter transforms calc:', function() {
383
383
_assert ( out , [ 'b' , 'd' ] , [ 2 , 4 ] , [ '1' , '0' ] ) ;
384
384
} ) ;
385
385
386
- it ( 'filters should handle categories + *notin *' , function ( ) {
386
+ it ( 'with operation *}{ *' , function ( ) {
387
387
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
388
388
transforms : [ {
389
389
operation : '}{' ,
@@ -417,7 +417,7 @@ describe('filter transforms calc:', function() {
417
417
expect ( out [ 0 ] . marker . line . width ) . toEqual ( 2.5 , '- marker.line.width style' ) ;
418
418
}
419
419
420
- it ( '+ *=*' , function ( ) {
420
+ it ( 'with operation *=*' , function ( ) {
421
421
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
422
422
transforms : [ {
423
423
operation : '=' ,
@@ -429,7 +429,7 @@ describe('filter transforms calc:', function() {
429
429
_assert ( out , [ '2015-07-20' ] , [ 1 ] , [ 0.1 ] ) ;
430
430
} ) ;
431
431
432
- it ( '+ *<*' , function ( ) {
432
+ it ( 'with operation *<*' , function ( ) {
433
433
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
434
434
transforms : [ {
435
435
operation : '<' ,
@@ -441,7 +441,7 @@ describe('filter transforms calc:', function() {
441
441
_assert ( out , [ '2015-07-20' ] , [ 1 ] , [ 0.1 ] ) ;
442
442
} ) ;
443
443
444
- it ( '+ *>*' , function ( ) {
444
+ it ( 'with operation *>*' , function ( ) {
445
445
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
446
446
transforms : [ {
447
447
operation : '>=' ,
@@ -457,7 +457,7 @@ describe('filter transforms calc:', function() {
457
457
) ;
458
458
} ) ;
459
459
460
- it ( '+ *within *' , function ( ) {
460
+ it ( 'with operation *[] *' , function ( ) {
461
461
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
462
462
transforms : [ {
463
463
operation : '[]' ,
@@ -469,7 +469,7 @@ describe('filter transforms calc:', function() {
469
469
_assert ( out , [ '2016-08-01' , '2016-09-01' ] , [ 2 , 3 ] , [ 0.2 , 0.3 ] ) ;
470
470
} ) ;
471
471
472
- it ( '+ *notwithin *' , function ( ) {
472
+ it ( 'with operation *)( *' , function ( ) {
473
473
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
474
474
transforms : [ {
475
475
operation : ')(' ,
@@ -481,7 +481,7 @@ describe('filter transforms calc:', function() {
481
481
_assert ( out , [ '2015-07-20' , '2016-10-21' , '2016-12-02' ] , [ 1 , 1 , 5 ] , [ 0.1 , 0.1 , 0.2 ] ) ;
482
482
} ) ;
483
483
484
- it ( '+ *in *' , function ( ) {
484
+ it ( 'with operation *{} *' , function ( ) {
485
485
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
486
486
transforms : [ {
487
487
operation : '{}' ,
@@ -493,7 +493,7 @@ describe('filter transforms calc:', function() {
493
493
_assert ( out , [ '2015-07-20' ] , [ 1 ] , [ 0.1 ] ) ;
494
494
} ) ;
495
495
496
- it ( '+ *notin *' , function ( ) {
496
+ it ( 'with operation *}{ *' , function ( ) {
497
497
var out = _transform ( [ Lib . extendDeep ( { } , _base , {
498
498
transforms : [ {
499
499
operation : '}{' ,
0 commit comments