Sha256: 46f89a8b922e99a9334da08986b1dedd1e125128118c1b5a39616ab7ac480c74

Contents?: true

Size: 1.4 KB

Versions: 79

Compression:

Stored size: 1.4 KB

Contents

Feature: Post Configuration Hook [#423]

  In order to extend Cucumber
  As a developer
  I want to manipulate the Cucumber configuration after it has been created

  Scenario: Using options directly gets a deprecation warning

    Given a standard Cucumber project directory structure
    And a file named "features/support/env.rb" with:
      """
      AfterConfiguration do |config|
        config.options[:blah]
      end
      """
    When I run cucumber features
    Then STDERR should match
      """
      Deprecated
      """

    Given a standard Cucumber project directory structure
    And a file named "features/support/env.rb" with:
      """
      AfterConfiguration do |config|
        config.formats << ['html', config.out_stream]
      end
      """
    When I run cucumber features
    Then STDERR should be empty
    And the output should contain
      """
      html
      """

  Scenario: feature directories read from configuration

    Given a standard Cucumber project directory structure
    And a file named "features/support/env.rb" with:
      """
      AfterConfiguration do |config|
        config.out_stream << "AfterConfiguration hook read feature directories: #{config.feature_dirs.join(', ')}" 
      end
      """
    When I run cucumber features
    Then STDERR should be empty
    And the output should contain
      """
      AfterConfiguration hook read feature directories: features
      """

Version data entries

79 entries across 77 versions & 11 rubygems

Version Path
cucumber-1.3.20 legacy_features/post_configuration_hook.feature
cucumber-1.3.19 legacy_features/post_configuration_hook.feature
cucumber-1.3.18 legacy_features/post_configuration_hook.feature
cucumber-1.3.17 legacy_features/post_configuration_hook.feature
cucumber-1.3.16 legacy_features/post_configuration_hook.feature
cucumber-1.3.15 legacy_features/post_configuration_hook.feature
cucumber-1.3.14 legacy_features/post_configuration_hook.feature
cucumber-1.3.13 legacy_features/post_configuration_hook.feature
cucumber-1.3.12 legacy_features/post_configuration_hook.feature
cucumber-1.3.11 legacy_features/post_configuration_hook.feature
cucumber-1.3.10 legacy_features/post_configuration_hook.feature
cucumber-1.3.9 legacy_features/post_configuration_hook.feature
candlepin-api-0.4.0 bundle/ruby/1.8/gems/cucumber-1.2.1/legacy_features/post_configuration_hook.feature
candlepin-api-0.4.0 bundle/ruby/1.9.1/gems/cucumber-1.2.1/legacy_features/post_configuration_hook.feature
candlepin-api-0.4.0 bundle/ruby/gems/cucumber-1.2.1/legacy_features/post_configuration_hook.feature
cucumber-1.3.8 legacy_features/post_configuration_hook.feature
cucumber-1.3.7 legacy_features/post_configuration_hook.feature
cucumber-1.3.6 legacy_features/post_configuration_hook.feature
cucumber-1.3.5 legacy_features/post_configuration_hook.feature
cucumber-1.3.4 legacy_features/post_configuration_hook.feature