diff options
Diffstat (limited to 'jstests/core/array1.js')
-rw-r--r-- | jstests/core/array1.js | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/jstests/core/array1.js b/jstests/core/array1.js index 3a27feb028a..8d6be81ca1f 100644 --- a/jstests/core/array1.js +++ b/jstests/core/array1.js @@ -1,14 +1,16 @@ t = db.array1; t.drop(); -x = { a : [ 1 , 2 ] }; +x = { + a: [1, 2] +}; -t.save( { a : [ [1,2] ] } ); -assert.eq( 1 , t.find( x ).count() , "A" ); +t.save({a: [[1, 2]]}); +assert.eq(1, t.find(x).count(), "A"); -t.save( x ); +t.save(x); delete x._id; -assert.eq( 2 , t.find( x ).count() , "B" ); +assert.eq(2, t.find(x).count(), "B"); -t.ensureIndex( { a : 1 } ); -assert.eq( 2 , t.find( x ).count() , "C" ); // TODO SERVER-146 +t.ensureIndex({a: 1}); +assert.eq(2, t.find(x).count(), "C"); // TODO SERVER-146 |