Sha256: 6b64cabe5f4caa52006643426bed16c662fb923030cbb7665f73fe690ac8d9bc

Contents?: true

Size: 681 Bytes

Versions: 3

Compression:

Stored size: 681 Bytes

Contents

Feature: Command Errors

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

  Background:
    Given the test server is started

  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    |
      | APPE    |
      | REIN    |
      | REST    |
      | SITE    |
      | SMNT    |
      | STAT    |

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ftpd-0.3.2 features/ftp_server/command_errors.feature
ftpd-0.3.1 features/ftp_server/command_errors.feature
ftpd-0.2.2 features/ftp_server/command_errors.feature