@@ -9,14 +9,14 @@ const WOQL = require('../lib/woql');
99const WOQL_SLICE_JSON = require ( './woqlJson/woqlSliceJson' ) ;
1010
1111describe ( 'WOQL slice operator' , ( ) => {
12- describe ( 'AC-1: Basic slicing' , ( ) => {
12+ describe ( 'Basic slicing' , ( ) => {
1313 it ( 'generates correct JSON for slice with start and end' , ( ) => {
1414 const woqlObject = WOQL . slice ( [ 'a' , 'b' , 'c' , 'd' ] , 'v:Result' , 1 , 3 ) ;
1515 expect ( woqlObject . json ( ) ) . to . eql ( WOQL_SLICE_JSON . basicSlice ) ;
1616 } ) ;
1717 } ) ;
1818
19- describe ( 'AC-3: Negative indices' , ( ) => {
19+ describe ( 'Negative indices' , ( ) => {
2020 it ( 'generates correct JSON for slice with negative indices' , ( ) => {
2121 const woqlObject = WOQL . slice ( [ 'a' , 'b' , 'c' , 'd' ] , 'v:Result' , - 2 , - 1 ) ;
2222 expect ( woqlObject . json ( ) ) . to . eql ( WOQL_SLICE_JSON . negativeIndices ) ;
@@ -42,7 +42,7 @@ describe('WOQL slice operator', () => {
4242 } ) ;
4343 } ) ;
4444
45- describe ( 'AC-7: Full range' , ( ) => {
45+ describe ( 'Full range' , ( ) => {
4646 it ( 'generates correct JSON for slice from start' , ( ) => {
4747 const woqlObject = WOQL . slice ( [ 'a' , 'b' , 'c' ] , 'v:Result' , 0 , 2 ) ;
4848 expect ( woqlObject . json ( ) ) . to . eql ( WOQL_SLICE_JSON . fromStart ) ;
0 commit comments