Sha256: c68699e0c868dfb5bf9ef8180ced3f11180d245e68bc555f7de50da96e58a6a8

Contents?: true

Size: 766 Bytes

Versions: 1

Compression:

Stored size: 766 Bytes

Contents

Feature: Configure timeout for io of commands

  As a developer
  I want to configure the timeout waiting for io of a command
  In order to support some longer running commands

  Background:
    Given I use the fixture "cli-app"

  Scenario: Default value
    Given a file named "features/support/aruba.rb" with:
    """
    Aruba.configure do |config|
      puts %(The default value is "#{config.io_wait_timeout}")
    end
    """
    When I successfully run `cucumber`
    Then the output should contain:
    """
    The default value is "0.1"
    """

  Scenario: Modify value
    Given a file named "features/support/aruba.rb" with:
    """
    Aruba.configure do |config|
      config.io_wait_timeout = 2
    end
    """
    Then I successfully run `cucumber`

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aruba-0.9.0.pre features/configuration/io_timeout.feature