Sha256: d4e27fd7127942bfb8be08f80ceffbb8fc28e4470e0a3a5722d2d515d6bbc8d1

Contents?: true

Size: 761 Bytes

Versions: 6

Compression:

Stored size: 761 Bytes

Contents

Feature: Features

  As a client
  I want to know what FTP extension the server supports
  So that I can use them without trial-and-error

  Background:

  Scenario: TLS Disabled
    Given the test server is started
    And the client connects
    When the client successfully requests features
    Then the response should not include TLS features

  Scenario: TLS Enabled
    Given the test server has TLS mode "explicit"
    And the test server is started
    And the client connects
    When the client successfully requests features
    Then the response should include TLS features

  Scenario: Argument given
    Given the test server is started
    And the client connects
    When the client sends "FEAT FOO"
    Then the server returns a syntax error

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ftpd-0.10.0 features/ftp_server/features.feature
ftpd-0.9.0 features/ftp_server/features.feature
ftpd-0.7.1 features/ftp_server/features.feature
ftpd-0.8.0 features/ftp_server/features.feature
ftpd-0.7.0 features/ftp_server/features.feature
ftpd-0.6.0 features/ftp_server/features.feature