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