[Groonga-commit] groonga/gcs [master] Delete obsolete tests

Back to archive index

YUKI Hiroshi null+****@clear*****
Mon Nov 26 19:50:27 JST 2012


YUKI Hiroshi	2012-11-26 19:50:27 +0900 (Mon, 26 Nov 2012)

  New Revision: 317fa38b4a9c83e7f364e98f674297b2d317cd86
  https://github.com/groonga/gcs/commit/317fa38b4a9c83e7f364e98f674297b2d317cd86

  Log:
    Delete obsolete tests

  Modified files:
    test/api-configuration.test.js

  Modified: test/api-configuration.test.js (+4 -29)
===================================================================
--- test/api-configuration.test.js    2012-11-26 19:47:59 +0900 (f1c4756)
+++ test/api-configuration.test.js    2012-11-26 19:50:27 +0900 (cca201d)
@@ -29,7 +29,7 @@ suite('Configuration API', function() {
     setup(commonSetup);
     teardown(commonTeardown);
 
-    test('Action=CreateDomain', function(done) {
+    test('Action=CreateDomain success case', function(done) {
       utils
         .get('/?DomainName=companies&Action=CreateDomain&Version=2011-02-01')
         .next(function(response) {
@@ -41,19 +41,7 @@ suite('Configuration API', function() {
         });
     });
 
-    test('multiple Action=CreateDomain requests for the same domain', function(done) {
-      utils
-        .get('/?DomainName=companies&Action=CreateDomain&Version=2011-02-01')
-        .get('/?DomainName=companies&Action=CreateDomain&Version=2011-02-01')
-        .next(function(response) {
-          assert.isTrue(new Domain('companies', context).exists());
-          done();
-        }).error(function(error) {
-          done(error)
-        });
-    });
-
-    test('Action=CreateDomain with invalid domain name', function(done) {
+    test('Action=CreateDomain failure case', function(done) {
       utils
         .get('/?DomainName=a&Action=CreateDomain&Version=2011-02-01')
         .next(function(response) {
@@ -65,25 +53,12 @@ suite('Configuration API', function() {
         });
     });
 
-    test('Action=CreateDomain without domain name', function(done) {
-      utils
-        .get('/?DomainName=&Action=CreateDomain&Version=2011-02-01')
-        .next(function(response) {
-          assert.isFalse(new Domain('companies', context).exists());
-          done();
-        })
-        .error(function(error) {
-          done(error);
-        });
-    });
-
-    test('Action=DeleteDomain', function(done) {
-      var domain;
+    test('Action=DeleteDomain success case', function(done) {
       utils
         .get('/?DomainName=companies&Action=CreateDomain&Version=2011-02-01')
         .get('/?DomainName=companies&Action=DeleteDomain&Version=2011-02-01')
         .next(function(response) {
-          assert.isFalse(domain.exists());
+          assert.isFalse(new Domain('companies', context).exists());
           done();
         })
         .error(function(error) {
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index