Sha256: 5f110ae43cbcaafe18504d1244730676a1ded4eef494d074d897168e14ec90c6

Contents?: true

Size: 833 Bytes

Versions: 12

Compression:

Stored size: 833 Bytes

Contents

#!/usr/bin/env cucumber

Feature: Arguments
  Scenario: Simple argument
    When I run "./examples/arguments.rb --report greet"
    Then it should show "Hey mate!"
    And it should succeed with "Running task greet took [\d.]+ seconds"

  Scenario: Argument taking options
    When I run "./examples/arguments.rb --debug greet"
    Then it should show "Setting debug to true"
    And it should suceed with "Hey mate!"

  Scenario: Argument taking options
    When I run "./examples/arguments.rb --no-debug greet"
    Then it should show "Setting debug to false"
    And it should suceed with "Hey mate!"

  Scenario: Arguments should be able to influence task execution
    When I run "./examples/arguments.rb --tasks greet"
    Then it should not show "Hey mate!"
    And it should suceed with "Available tasks: tasks, greet, wait"

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
nake-0.1.1 features/arguments.feature
nake-0.1 features/arguments.feature
nake-0.0.9.5 features/arguments.feature
nake-0.0.9.4 features/arguments.feature
nake-0.0.9.3 features/arguments.feature
nake-0.0.9.2 features/arguments.feature
nake-0.0.9.pre features/arguments.feature
do_riak-0.10.1.pre gems/gems/nake-0.0.8/features/arguments.feature
nake-0.0.8.pre features/arguments.feature
nake-0.0.8 features/arguments.feature
nake-0.0.7 features/arguments.feature
nake-0.0.6 features/arguments.feature