Sha256: 0d75baa8e0d75c1a071766bb26b1275c3c5bd7a90614e273cc12c589af7d6117

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

Feature: Too Long Step
  As a Business Analyst
  I want to write short steps
  so that they are attractive enough to read

  Background: Prepare Testee
    Given a file named "lint.rb" with:
      """
      $LOAD_PATH << '../../lib'
      require 'gherkin_lint'

      linter = GherkinLint::GherkinLint.new
      linter.enable %w(TooLongStep)
      linter.set_linter
      linter.analyze 'lint.feature'
      exit linter.report

      """

  Scenario: Long Step
    Given a file named "lint.feature" with:
      """
      Feature: Test
        Scenario: A
          When action is quite long so that is not very readable and people even need to scroll because it does not fit on the screen
          Then verification
      """
    When I run `ruby lint.rb`
    Then it should fail with exactly:
      """
      TooLongStep - Used 118 characters
        lint.feature (3): Test.A step: action is quite long so that is not very readable and people even need to scroll because it does not fit on the screen

      """

  Scenario: Valid Example
    Given a file named "lint.feature" with:
      """
      Feature: Test
        Scenario: A
          When action
          Then verification
      """
    When I run `ruby lint.rb`
    Then it should pass with exactly:
      """
      """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gherkin_lint-1.2.2 features/too_long_step.feature
gherkin_lint-1.2.1 features/too_long_step.feature
gherkin_lint-1.1.0 features/too_long_step.feature
gherkin_lint-1.0.0 features/too_long_step.feature