Sha256: bc99d91ed0cfdf46ad84bf0682240ee81b69d3e34ef0c98a97222b8c427268c8
Contents?: true
Size: 793 Bytes
Versions: 6
Compression:
Stored size: 793 Bytes
Contents
Feature: Run commands There are several steps to run commands with `aruba`. Background: Given I use a fixture named "cli-app" Scenario: Run command found in path Given an executable named "bin/cli" with: """ #!/bin/bash exit 0 """ And a file named "features/run.feature" with: """ Feature: Run it Scenario: Run command When I run `cli` """ When I run `cucumber` Then the features should all pass Scenario: Relative command Given an executable named "bin/cli" with: """ #!/bin/bash exit 0 """ And a file named "features/run.feature" with: """ Feature: Run it Scenario: Run command When I run `bin/cli` """ When I run `cucumber` Then the features should all pass
Version data entries
6 entries across 6 versions & 1 rubygems