summaryrefslogtreecommitdiff
path: root/jstests/dbadmin.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/dbadmin.js')
-rw-r--r--jstests/dbadmin.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/jstests/dbadmin.js b/jstests/dbadmin.js
index 8d0e7d1..8ea0426 100644
--- a/jstests/dbadmin.js
+++ b/jstests/dbadmin.js
@@ -16,6 +16,9 @@ else {
t.save( { x : 1 } );
res = db._adminCommand( "listDatabases" );
-assert( res.databases.length > 0 , "listDatabases 1" );
+assert( res.databases && res.databases.length > 0 , "listDatabases 1 " + tojson(res) );
+
+x = db._adminCommand( "ismaster" );
+assert( x.ismaster , "ismaster failed: " + tojson( x ) )
// TODO: add more tests here