Files
mongo/jstests/core/auth2.js

10 lines
191 B
JavaScript
Raw Normal View History

2010-03-09 13:42:04 -05:00
// just make sure logout doesn't break anything
// SERVER-724
db.runCommand({logout: 1});
x = db.runCommand({logout: 1});
assert.eq(1, x.ok, "A");
2011-06-22 13:49:25 -04:00
x = db.logout();
assert.eq(1, x.ok, "B");