diff --git a/features/cloudsearch/cloudsearch.feature b/features/cloudsearch/cloudsearch.feature deleted file mode 100644 index a38a1d5914..0000000000 --- a/features/cloudsearch/cloudsearch.feature +++ /dev/null @@ -1,15 +0,0 @@ -# language: en -@cloudsearch -Feature: Amazon CloudSearch (2013-01-01) - - I want to use Amazon CloudSearch - - Scenario: Describing domain - Given I run the "describeDomains" operation - Then the request should be successful - And the value at "DomainStatusList" should be a list - - Scenario: Error handling - Given I create a domain with name prefix "" - Then the error code should be "ValidationError" - diff --git a/features/cloudsearch/step_definitions/cloudsearch.js b/features/cloudsearch/step_definitions/cloudsearch.js deleted file mode 100644 index 8bbb00b558..0000000000 --- a/features/cloudsearch/step_definitions/cloudsearch.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = function() { - this.Before("@cloudsearch", function (callback) { - this.service = new this.AWS.CloudSearch(); - callback(); - }); - - this.Given(/^I create a domain with name prefix "([^"]*)"$/, function(prefix, callback) { - this.domainName = this.uniqueName(prefix); - this.request(null, 'createDomain', {DomainName: this.domainName}, callback, false); - }); -};