Sha256: 1ebce7c896baa08226deaf4fedcc83dca2448a549443d329d01c50833dcd2e7e

Contents?: true

Size: 397 Bytes

Versions: 4

Compression:

Stored size: 397 Bytes

Contents

Feature: exit statuses

  In order to specify expected exit statuses
  As a developer using Cucumber
  I want to use the "the exit status should be" step

  Scenario: exit status of 0
    When I run "ruby -h"
    Then the exit status should be 0
    
  Scenario: non-zero exit status
    When I run "ruby -e 'exit 56'"
    Then the exit status should be 56
    And the exit status should not be 0

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aruba-0.1.4 features/exit_statuses.feature
aruba-0.1.3 features/exit_statuses.feature
aruba-0.1.2 features/exit_statuses.feature
aruba-0.1.1 features/exit_statuses.feature