File tree 2 files changed +23
-4
lines changed
2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
1
# language: en
2
- @cloudsearch
3
- Feature : Amazon CloudSearch
2
+ @cloudsearch @cloudsearch-2011-02-01
3
+ Feature : Amazon CloudSearch (2011-02-01 )
4
4
5
5
I want to use Amazon CloudSearch
6
6
@@ -18,3 +18,17 @@ Feature: Amazon CloudSearch
18
18
Scenario : Error handling
19
19
Given I create a domain with name prefix ""
20
20
Then the error code should be "ValidationError"
21
+
22
+ @cloudsearch @cloudsearch-2013-01-01
23
+ Feature : Amazon CloudSearch (2013-01-01 )
24
+
25
+ I want to use Amazon CloudSearch
26
+
27
+ Scenario : Domain creation
28
+ Given I create a domain with name prefix "aws-js-sdk"
29
+ Then DomainStatus should show that Created is true
30
+ And I delete the domain
31
+
32
+ Scenario : Error handling
33
+ Given I create a domain with name prefix ""
34
+ Then the error code should be "ValidationError"
Original file line number Diff line number Diff line change 1
1
module . exports = function ( ) {
2
- this . Before ( "@cloudsearch" , function ( callback ) {
3
- this . service = new this . AWS . CloudSearch ( ) ;
2
+ this . Before ( "@cloudsearch-2011-02-01" , function ( callback ) {
3
+ this . service = new this . AWS . CloudSearch ( { apiVersion : '2011-02-01' } ) ;
4
+ callback ( ) ;
5
+ } ) ;
6
+
7
+ this . Before ( "@cloudsearch-2013-01-01" , function ( callback ) {
8
+ this . service = new this . AWS . CloudSearch ( { apiVersion : '2013-01-01' } ) ;
4
9
callback ( ) ;
5
10
} ) ;
6
11
You can’t perform that action at this time.
0 commit comments