@@ -43,7 +43,7 @@ describe('Cloudant API', function() {
4343 } ) ;
4444} ) ;
4545
46- describe ( 'Initialization' , function ( ) {
46+ describe ( '#db Initialization' , function ( ) {
4747 it ( 'runs synchronously with one argument' , function ( ) {
4848 ( function ( ) {
4949 var db = Cloudant ( { account : ME } ) ;
@@ -110,7 +110,7 @@ describe('Initialization', function() {
110110 } ) ;
111111} ) ;
112112
113- describe ( 'Authentication' , function ( ) {
113+ describe ( '#db Authentication' , function ( ) {
114114 it ( 'supports Authentication API - POST /_api/v2/api_keys' , function ( done ) {
115115 var mocks = nock ( SERVER )
116116 . post ( '/_api/v2/api_keys' ) . reply ( 200 , { 'password' : 'Eivln4jPiLS8BoTxjXjVukDT' , 'ok' : true , 'key' : 'thandoodstrenterprourete' } ) ;
@@ -132,7 +132,7 @@ describe('Authentication', function() {
132132 } ) ;
133133} ) ;
134134
135- describe ( 'CORS' , function ( ) {
135+ describe ( '#db CORS' , function ( ) {
136136 it ( 'supports CORS API - GET /_api/v2/user/config/cors' , function ( done ) {
137137 var mocks = nock ( SERVER )
138138 . get ( '/_api/v2/user/config/cors' ) . reply ( 200 , { 'enable_cors' : true , 'allow_credentials' : true , 'origins' : [ '*' ] } ) ;
@@ -170,7 +170,7 @@ describe('CORS', function() {
170170 } ) ;
171171} ) ;
172172
173- describe ( 'Authorization' , function ( ) {
173+ describe ( '#db Authorization' , function ( ) {
174174 var dbName ;
175175
176176 before ( function ( done ) {
@@ -239,7 +239,7 @@ describe('Authorization', function() {
239239 } ) ;
240240} ) ;
241241
242- describe ( 'Cloudant-Specific APIs' , function ( ) {
242+ describe ( '#db Cloudant-Specific APIs' , function ( ) {
243243 var dbName ;
244244
245245 before ( function ( done ) {
@@ -349,7 +349,7 @@ describe('Cloudant-Specific APIs', function() {
349349 } ) ;
350350} ) ;
351351
352- describe ( 'Changes query' , function ( ) {
352+ describe ( '#db Changes query' , function ( ) {
353353 var dbName ;
354354
355355 before ( function ( done ) {
@@ -465,7 +465,7 @@ describe('Changes query', function() {
465465 } ) ;
466466} ) ;
467467
468- describe ( 'Changes follower' , function ( ) {
468+ describe ( '#db Changes follower' , function ( ) {
469469 var dbName ;
470470
471471 before ( function ( done ) {
@@ -606,7 +606,7 @@ describe('Changes follower', function() {
606606 } ) ;
607607} ) ;
608608
609- describe ( 'Cloudant Query' , function ( ) {
609+ describe ( '#db Cloudant Query' , function ( ) {
610610 var dbName ;
611611
612612 before ( function ( done ) {
@@ -749,7 +749,7 @@ describe('Cloudant Query', function() {
749749 } ) ;
750750} ) ;
751751
752- describe ( 'Cloudant Search' , function ( ) {
752+ describe ( '#db Cloudant Search' , function ( ) {
753753 var dbName ;
754754
755755 before ( function ( done ) {
@@ -938,7 +938,7 @@ describe('Gzip header tests', function() {
938938} ) ;
939939
940940if ( ! process . env . NOCK_OFF ) {
941- describe ( 'Gzip attachment tests' , test_gzip ) ;
941+ describe ( '#db Gzip attachment tests' , test_gzip ) ;
942942}
943943function test_gzip ( ) {
944944 it ( 'checks that the zipped response is unzipped' , function ( done ) {
0 commit comments