Sha256: e52031af4541afd2f5e67347e40ffb903699cfd71a2aeea38e1c9f3ae81020c2
Contents?: true
Size: 1013 Bytes
Versions: 27
Compression:
Stored size: 1013 Bytes
Contents
Feature: Configure the aruba console history file As a developer I want to configure the history file of aruba console In order to have a better isolation of tests 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.console_history_file}") end """ When I successfully run `cucumber` Then the output should contain: """ The default value is "~/.aruba_history" """ Scenario: Set some value Given a file named "features/support/aruba.rb" with: """ Aruba.configure do |config| config.console_history_file = '~/.config/aruba/history.txt' end Aruba.configure do |config| puts %(The value is "#{config.console_history_file}") end """ Then I successfully run `cucumber` Then the output should contain: """ The value is "~/.config/aruba/history.txt" """
Version data entries
27 entries across 27 versions & 2 rubygems