|
|
|
@ -166,8 +166,19 @@ describe('Model', function () { |
|
|
|
|
model.checkObject(obj); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
it.only('Can check if an object is a primitive or not', function () { |
|
|
|
|
it('Can check if an object is a primitive or not', function () { |
|
|
|
|
model.isPrimitiveType(5).should.equal(true); |
|
|
|
|
model.isPrimitiveType('sdsfdfs').should.equal(true); |
|
|
|
|
model.isPrimitiveType(0).should.equal(true); |
|
|
|
|
model.isPrimitiveType(true).should.equal(true); |
|
|
|
|
model.isPrimitiveType(false).should.equal(true); |
|
|
|
|
model.isPrimitiveType(new Date()).should.equal(true); |
|
|
|
|
model.isPrimitiveType([]).should.equal(true); |
|
|
|
|
model.isPrimitiveType([3, 'try']).should.equal(true); |
|
|
|
|
model.isPrimitiveType(null).should.equal(true); |
|
|
|
|
|
|
|
|
|
model.isPrimitiveType({}).should.equal(false); |
|
|
|
|
model.isPrimitiveType({ a: 42 }).should.equal(false); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}); // ==== End of 'Object checking' ==== //
|
|
|
|
@ -545,7 +556,7 @@ describe('Model', function () { |
|
|
|
|
|
|
|
|
|
}); // End of '$pop modifier'
|
|
|
|
|
|
|
|
|
|
describe.skip('$pull modifier', function () { |
|
|
|
|
describe('$pull modifier', function () { |
|
|
|
|
|
|
|
|
|
it('Can remove an element from a set', function () { |
|
|
|
|
var obj = { arr: ['hello', 'world'] } |
|
|
|
@ -593,12 +604,12 @@ describe('Model', function () { |
|
|
|
|
, modified |
|
|
|
|
; |
|
|
|
|
|
|
|
|
|
// modified = model.modify(obj, { $pull: { arr: { $gte: 5 } } });
|
|
|
|
|
// assert.deepEqual(modified, { arr: [4, 2], other: 'yup' });
|
|
|
|
|
modified = model.modify(obj, { $pull: { arr: { $gte: 5 } } }); |
|
|
|
|
assert.deepEqual(modified, { arr: [4, 2], other: 'yup' }); |
|
|
|
|
|
|
|
|
|
// obj = { arr: [{ b: 4 }, { b: 7 }, { b: 1 }], other: 'yeah' };
|
|
|
|
|
// modified = model.modify(obj, { $pull: { arr: { b: { $gte: 5} } } });
|
|
|
|
|
// assert.deepEqual(modified, { arr: [{ b: 4 }, { b: 1 }], other: 'yeah' });
|
|
|
|
|
obj = { arr: [{ b: 4 }, { b: 7 }, { b: 1 }], other: 'yeah' }; |
|
|
|
|
modified = model.modify(obj, { $pull: { arr: { b: { $gte: 5} } } }); |
|
|
|
|
assert.deepEqual(modified, { arr: [{ b: 4 }, { b: 1 }], other: 'yeah' }); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}); // End of '$pull modifier'
|
|
|
|
|