1# language: en
2@smoke @ds @directoryservice
3Feature: AWS Directory Service
4
5  I want to use AWS Directory Service
6
7  Scenario: Making a request
8    When I call the "DescribeDirectories" API
9    Then the value at "DirectoryDescriptions" should be a list
10
11  Scenario: Handling errors
12    When I attempt to call the "CreateDirectory" API with:
13      | Name     |  |
14      | Password |  |
15      | Size     |  |
16    Then I expect the response error code to be "ValidationException"
17
18