Merge pull request #868 from strongloop/mySQL-fix-tests
Fix tests for mysql
This commit is contained in:
commit
fc27aa9561
|
@ -767,8 +767,8 @@ describe('manipulation', function () {
|
||||||
.then(function (p) {
|
.then(function (p) {
|
||||||
p.should.not.have.property('_id');
|
p.should.not.have.property('_id');
|
||||||
p.title.should.equal('b');
|
p.title.should.equal('b');
|
||||||
p.should.have.property('content', undefined);
|
should.not.exist(p.content);
|
||||||
p.should.have.property('comments', undefined);
|
should.not.exist(p.comments);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -797,8 +797,8 @@ describe('manipulation', function () {
|
||||||
.then(function (p) {
|
.then(function (p) {
|
||||||
p.should.not.have.property('_id');
|
p.should.not.have.property('_id');
|
||||||
p.title.should.equal('b');
|
p.title.should.equal('b');
|
||||||
p.should.have.property('content', undefined);
|
should.not.exist(p.content);
|
||||||
p.should.have.property('comments', undefined);
|
should.not.exist(p.comments);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -826,8 +826,8 @@ describe('manipulation', function () {
|
||||||
p.id.should.eql(post.id);
|
p.id.should.eql(post.id);
|
||||||
p.should.not.have.property('_id');
|
p.should.not.have.property('_id');
|
||||||
p.title.should.equal('b');
|
p.title.should.equal('b');
|
||||||
p.should.have.property('content', undefined);
|
should.not.exist(p.content);
|
||||||
p.should.have.property('comments', undefined);
|
should.not.exist(p.comments);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -855,8 +855,8 @@ describe('manipulation', function () {
|
||||||
p.id.should.eql(post.id);
|
p.id.should.eql(post.id);
|
||||||
p.should.not.have.property('_id');
|
p.should.not.have.property('_id');
|
||||||
p.title.should.equal('b');
|
p.title.should.equal('b');
|
||||||
p.should.have.property('content', undefined);
|
should.not.exist(p.content);
|
||||||
p.should.have.property('comments', undefined);
|
should.not.exist(p.comments);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -939,7 +939,7 @@ describe('manipulation', function () {
|
||||||
return Post.findById(postInstance.id)
|
return Post.findById(postInstance.id)
|
||||||
.then(function (p) {
|
.then(function (p) {
|
||||||
p.title.should.equal('b');
|
p.title.should.equal('b');
|
||||||
p.should.have.property('content', undefined);
|
should.not.exist(p.content);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -959,7 +959,7 @@ describe('manipulation', function () {
|
||||||
return Post.findById(postInstance.id)
|
return Post.findById(postInstance.id)
|
||||||
.then(function (p) {
|
.then(function (p) {
|
||||||
p.title.should.equal('b');
|
p.title.should.equal('b');
|
||||||
p.should.have.property('content', undefined);
|
should.not.exist(p.content);
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue