Sha256: dcc2b0d692464a88dacd251647bdd45cda6e8b0c6a80fa932cc752af64d53eaa

Contents?: true

Size: 773 Bytes

Versions: 3

Compression:

Stored size: 773 Bytes

Contents

Feature: Command Errors

  As a client
  I want good error messages
  So that I can figure out what went wrong

  Scenario: Unknown command
    Given a successful connection
    When the client sends command "foo"
    Then the server returns a command unrecognized error

  Scenario Outline: Unimplemented command
    Given a successful connection
    When the client sends command "<command>"
    Then the server returns an unimplemented command error
    Examples:
      | command |
      | ABOR    |
      | ACCT    |
      | ALLO    |
      | APPE    |
      | HELP    |
      | MKD     |
      | REIN    |
      | REST    |
      | RMD     |
      | RNFR    |
      | RNTO    |
      | SITE    |
      | SMNT    |
      | STAT    |
      | STOU    |
      | SYST    |

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ftpd-0.0.1.pre features/command_errors.feature
ftpd-0.0.0.pre2 features/command_errors.feature
ftpd-0.0.0.pre1 features/command_errors.feature