Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LearnBoost/mongoose
Browse files Browse the repository at this point in the history
  • Loading branch information
aheckmann committed Mar 22, 2011
2 parents 0a4777e + 77dfe20 commit 6b98d01
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/model.test.js
Expand Up @@ -2123,6 +2123,11 @@ module.exports = {
person.get('name.first').should.equal('The');
person.get('name.last').should.equal('Situation');

person.name.full.should.equal('Michael Sorrentino');
person.name.full = 'The Situation';
person.name.first.should.equal('The');
person.name.last.should.equal('Situation');

db.close();
},

Expand Down

0 comments on commit 6b98d01

Please sign in to comment.