You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by jc...@apache.org on 2009/11/30 00:10:44 UTC

svn commit: r885286 - /couchdb/trunk/share/www/script/test/basics.js

Author: jchris
Date: Sun Nov 29 23:10:43 2009
New Revision: 885286

URL: http://svn.apache.org/viewvc?rev=885286&view=rev
Log:
add assertion that _all_dbs API exists

Modified:
    couchdb/trunk/share/www/script/test/basics.js

Modified: couchdb/trunk/share/www/script/test/basics.js
URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/test/basics.js?rev=885286&r1=885285&r2=885286&view=diff
==============================================================================
--- couchdb/trunk/share/www/script/test/basics.js (original)
+++ couchdb/trunk/share/www/script/test/basics.js Sun Nov 29 23:10:43 2009
@@ -45,6 +45,7 @@
 
   // Get the database info, check the db_name
   T(db.info().db_name == "test_suite_db");
+  T(CouchDB.allDbs().indexOf("test_suite_db") != -1)
 
   // Get the database info, check the doc_count
   T(db.info().doc_count == 0);