Sha256: ed7d12c01e1cab8266e136cce0f9f16da7f058d484072371742ccd2eec4fd1b1
Contents?: true
Size: 806 Bytes
Versions: 5
Compression:
Stored size: 806 Bytes
Contents
Feature: Configure if ansi color codes should be stripped off from command output As a developer I want to strip off ansi color codes In order to make checking of those outputs easier 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.keep_ansi}") end """ When I successfully run `cucumber` Then the output should contain: """ The default value is "false" """ Scenario: Modify value Given a file named "features/support/aruba.rb" with: """ Aruba.configure do |config| config.keep_ansi = true end """ Then I successfully run `cucumber`
Version data entries
5 entries across 5 versions & 1 rubygems