Sha256: 416016213e0d471828ad12e180b3a99a61c0ac7f9b7cc69bc08d871ce73f5dda

Contents?: true

Size: 685 Bytes

Versions: 103

Compression:

Stored size: 685 Bytes

Contents

Feature: Snippets
  In order to help speed up writing step definitions
  As a feature editor
  I want snippet suggestions for undefined step definitions

  Scenario: Snippet for undefined step with a pystring
    When I run cucumber features/undefined_multiline_args.feature:3 -s
    Then the output should contain
      """
      Given /^a pystring$/ do |string|
        pending
      end
      """
  Scenario: Snippet for undefined step with a step table
    When I run cucumber features/undefined_multiline_args.feature:9 -s
    Then the output should contain
      """
      Given /^a table$/ do |table|
        # table is a Cucumber::Ast::Table
        pending
      end
      """

Version data entries

103 entries across 103 versions & 9 rubygems

Version Path
cucumber-0.3.7 features/snippet.feature
cucumber-0.3.9 features/snippet.feature
cucumber-0.3.8 features/snippet.feature