Sha256: 0a4900fbeb28b643c45cbeae666b4c5af149151b9651fbc85e889a6db1dae6d2

Contents?: true

Size: 744 Bytes

Versions: 1

Compression:

Stored size: 744 Bytes

Contents

Feature: Soundcheck
  In order to run my tests quickly
  I want to require as little as possible

  Scenario: Command line help
    When I run "soundcheck --help"
    Then I should see "Usage: soundcheck"

  Scenario: Unknown languages
    Given the "null-project" fixture
    When I run "soundcheck"
    Then I should see "Cannot detect the programming language for this project."
    And it should have failed

  Scenario: Ruby and RSpec
    Given the "ruby-bundler-rspec" fixture
    When I run "soundcheck spec"
    Then it should have passed

  Scenario: Ruby and RSpec backtraces
    Given the "ruby-rspec-exception" fixture
    When I run "soundcheck --trace spec"
    Then I should see "1 failure"
    And I should see "gems/rspec-core"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soundcheck-0.2.1 features/soundcheck.feature