Sha256: ad83262fd4330527523534bbd3798234f208f993916f83d1bc604c803ec02e00

Contents?: true

Size: 627 Bytes

Versions: 1

Compression:

Stored size: 627 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    |
      | REIN    |
      | REST    |
      | SITE    |
      | SMNT    |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ftpd-0.5.0 features/ftp_server/command_errors.feature