Sha256: db726606ed8e1776cf14717e2e363123f91b66f34b178c6fcb1bafdf6e20cb91

Contents?: true

Size: 1010 Bytes

Versions: 7

Compression:

Stored size: 1010 Bytes

Contents

Feature: Test command
  In order to run tests written with rspec
  As a user of Busser
  I want my tests to run when the rspec runner plugin is installed

  Background:
    Given a test BUSSER_ROOT directory named "busser-rspec-test"
    When I successfully run `busser plugin install busser-rspec --force-postinstall`
    Given a suite directory named "rspec"

  Scenario: A passing test suite
    Given a file in suite "rspec" named "<YOUR_FILE>" with:
    """
    TEST FILE CONTENT

    A good test might be a simple passing statement
    """
    When I run `busser test rspec`
    Then I should verify some output for the rspec plugin
    And the exit status should be 0

  Scenario: A failing test suite
    Given a file in suite "rspec" named "<YOUR_FILE>" with:
    """
    TEST FILE CONTENT

    A good test might be a failing test case, raised exception, etc.
    """
    When I run `busser test rspec`
    Then I should verify some output for the rspec plugin
    And the exit status should not be 0

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
busser-rspec-0.7.0 features/test_command.feature
busser-rspec-0.6.0 features/test_command.feature
busser-rspec-0.5.0 features/test_command.feature
busser-rspec-0.4.0 features/test_command.feature
busser-rspec-0.3.0 features/test_command.feature
busser-rspec-0.2.0 features/test_command.feature
busser-rspec-0.1.0 features/test_command.feature