Sha256: 172349fb02a9810fa4f4b29a7e8e1a49e885347ea4acfa4f523cbc9d7bfad37f
Contents?: true
Size: 799 Bytes
Versions: 5
Compression:
Stored size: 799 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" And the default feature-test 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
5 entries across 5 versions & 1 rubygems