1# language: en
2@smoke @efs @elasticfilesystem
3Feature: Amazon Elastic File System
4
5  I want to use Amazon Elastic File System
6
7  Scenario: Making a request
8    When I call the "DescribeFileSystems" API
9    Then the value at "FileSystems" should be a list
10
11  Scenario: Handling errors
12    When I attempt to call the "DeleteFileSystem" API with:
13      | FileSystemId | fs-c5a1446c |
14    Then I expect the response error code to be "FileSystemNotFound"
15