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