Sha256: 3d9178acca2ec2c16ffd8247cb36cf9404b8bf8383aa21cb6f1ed3cefc3e40ae
Contents?: true
Size: 788 Bytes
Versions: 5
Compression:
Stored size: 788 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_config.rb" with: """ruby 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_config.rb" with: """ruby Aruba.configure do |config| config.io_wait_timeout = 2 end """ Then I successfully run `cucumber`
Version data entries
5 entries across 5 versions & 1 rubygems