Sha256: 078a96d6ae9f191b037d98cc6be04be5538da9d6a272077f35de6d5987f0fce5

Contents?: true

Size: 1.29 KB

Versions: 11

Compression:

Stored size: 1.29 KB

Contents

Feature: Backtrace filtering
  As a developer
  In order to faster find the backtrace lines
  I want to see modified backtraces with only non-library calls

  Background:
    And a file "features/test.feature" with the following content exists
      """
      Feature: F
        Scenario: Scenario A
          Given there is an error

      """
    And a file "features/support/steps/test_steps.rb" with the following content exists
      """
      module TestSteps
        step("there is an error") { raise RuntimeError }
      end
      Gurke.configure{|c| c.include TestSteps }
      """

  Scenario: See backtrace without line from libraries
    When I run the tests
    Then the program output should include "features/support/steps/test_steps.rb:2"
    Then the program output should not include "gurke/lib/gurke/runner.rb"

  Scenario: See backtrace when run with --backtrace
    When I run the tests with "--backtrace"
    Then the program output should include "features/support/steps/test_steps.rb:2"
    Then the program output should include "gurke/lib/gurke/runner.rb"

  Scenario: See backtrace when run with -b
    When I run the tests with "-b"
    Then the program output should include "features/support/steps/test_steps.rb:2"
    Then the program output should include "gurke/lib/gurke/runner.rb"

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
gurke-3.4.0 features/gurke/backtrace_filtering.feature
gurke-3.3.5 features/gurke/backtrace_filtering.feature
gurke-3.3.4 features/gurke/backtrace_filtering.feature
gurke-3.3.3 features/gurke/backtrace_filtering.feature
gurke-3.3.2 features/gurke/backtrace_filtering.feature
gurke-3.3.1 features/gurke/backtrace_filtering.feature
gurke-3.2.2 features/gurke/backtrace_filtering.feature
gurke-3.2.1 features/gurke/backtrace_filtering.feature
gurke-3.2.0 features/gurke/backtrace_filtering.feature
gurke-3.1.0 features/gurke/backtrace_filtering.feature
gurke-3.0.0 features/gurke/backtrace_filtering.feature