Skip to content

Commit

Permalink
Add a remove statement to the insert test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorribas committed Jan 9, 2014
1 parent 1c1dbd5 commit 6dd7b4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test-insert.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ db.a.insert([{name: "Squirtle"}, {name: "Charmander"}, {name: "Bulbasaur"}], fun
assert.ok(docs[0]._id);
assert.ok(docs[1]._id);
assert.ok(docs[2]._id);
db.close();
db.a.remove(function() {
db.close();
});
});

0 comments on commit 6dd7b4e

Please sign in to comment.