summaryrefslogtreecommitdiff
path: root/jstests/core/auth2.js
blob: 2c4cff6796ba6886722bd10e9e825ba39e3ae88b (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" );