Sha256: c472af0c75eaa82f8bcc6e1ae3a4cf6d8f162b701e4c3fe4d6872659c6efd49c

Contents?: true

Size: 902 Bytes

Versions: 12

Compression:

Stored size: 902 Bytes

Contents

Feature: Port

  As a client
  I want to reserve file system space
  So that my put will succeed

  Background:
    Given the test server is started

  Scenario: With count
    Given a successful login
    When the client successfully sends "ALLO 1024"
    Then the server returns a not necessary reply

  Scenario: With count and record size
    Given a successful login
    When the client successfully sends "ALLO 1024 R 128"
    Then the server returns a not necessary reply

  Scenario: Not logged in
    Given a successful connection
    When the client sends "ALLO 1024"
    Then the server returns a not logged in error

  Scenario: Missing argument
    Given a successful login
    When the client sends "ALLO"
    Then the server returns a syntax error

  Scenario: Invalid argument
    Given a successful login
    When the client sends "ALLO XYZ"
    Then the server returns a syntax error

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ftpd-0.9.0 features/ftp_server/allo.feature
ftpd-0.7.1 features/ftp_server/allo.feature
ftpd-0.8.0 features/ftp_server/allo.feature
ftpd-0.7.0 features/ftp_server/allo.feature
ftpd-0.6.0 features/ftp_server/allo.feature
ftpd-0.5.0 features/ftp_server/allo.feature
ftpd-0.4.0 features/ftp_server/allo.feature
ftpd-0.3.2 features/ftp_server/allo.feature
ftpd-0.3.1 features/ftp_server/allo.feature
ftpd-0.2.2 features/ftp_server/allo.feature
ftpd-0.2.1 features/ftp_server/allo.feature
ftpd-0.2.0 features/ftp_server/allo.feature