Sha256: 766db07fc70f9509da17750a56ae8a80448314e72659b26e443ffa465a320573

Contents?: true

Size: 645 Bytes

Versions: 1

Compression:

Stored size: 645 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    |
      | STAT    |

Version data entries

1 entries across 1 versions & 1 rubygems

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