Sha256: 62c6c94d940f0c0eb71b76d8bacf544478460304d8c620acea9af2ee8cfc2d8c

Contents?: true

Size: 839 Bytes

Versions: 4

Compression:

Stored size: 839 Bytes

Contents

Feature: save command
  Background:
    Given a file named "examples/support/env.rb" with:
      """
      require 'cucumberator'
      """
    Given a file named "examples/save.feature" with:
      """
      Feature: example
        Scenario: stop where exit
          Then I will write new steps

      """

  Scenario: check `save` command
    When I run `cucumber examples/save.feature` interactively
    And I type "When I do something extraordinary"
    And I type "save"
    And I type "exit"
    Then it should pass with:
      """
      Saved `When I do something extraordinary` to save.feature
      """
    And the file "examples/save.feature" should contain exactly:
      """
      Feature: example
        Scenario: stop where exit
          When I do something extraordinary
          Then I will write new steps

      """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cucumberator-1.0.3 features/force_save.feature
cucumberator-1.0.2 features/force_save.feature
cucumberator-1.0.1 features/force_save.feature
cucumberator-1.0.0 features/force_save.feature