Sha256: 0f3ee5cf1f522b7809638a7fab52c5b34e1883798db6bb29b590285e9ab81500

Contents?: true

Size: 1010 Bytes

Versions: 5

Compression:

Stored size: 1010 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"

  Scenario: Default value
    Given a file named "features/support/aruba_config.rb" with:
    """
    Aruba.configure do |config|
      puts %(The default value is "#{config.remove_ansi_escape_sequences}")
    end
    """
    When I successfully run `cucumber`
    Then the output should contain:
    """
    The default value is "true"
    """

  Scenario: Modify value
    Given a file named "features/support/aruba_config.rb" with:
    """
    Aruba.configure do |config|
      config.remove_ansi_escape_sequences = false
    end

    Aruba.configure do |config|
      puts %(The value is "#{config.remove_ansi_escape_sequences}")
    end
    """
    Then I successfully run `cucumber`
    And the output should contain:
    """
    The value is "false"
    """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
aruba-0.14.14 features/02_configure_aruba/remove_ansi_escape_sequences.feature
aruba-0.14.13 features/02_configure_aruba/remove_ansi_escape_sequences.feature
aruba-0.14.12 features/02_configure_aruba/remove_ansi_escape_sequences.feature
aruba-0.14.11 features/02_configure_aruba/remove_ansi_escape_sequences.feature
aruba-0.14.10 features/02_configure_aruba/remove_ansi_escape_sequences.feature