Sha256: 8d5511f0794a281527df16da1bdc8a4098d12ccd6e3c08481310f07f36b74d76

Contents?: true

Size: 786 Bytes

Versions: 1

Compression:

Stored size: 786 Bytes

Contents

Feature: Configure if ansi color codes should be stripped off from command output (deprecated)

  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"

  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

1 entries across 1 versions & 1 rubygems

Version Path
aruba-0.9.0.pre features/configuration/keep_ansi.feature