summaryrefslogtreecommitdiff
path: root/jstests/core/auth2.js
blob: c9e6d29dac9299106652fce9d29e3f9f74357f76 (plain)
1
2
3
4
5
6
7
8
9
// 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");

x = db.logout();
assert.eq(1, x.ok, "B");