Sha256: f896e1d529b4e9800268a930c48efd37c3a7b650ebfc1d9393347834f31006df

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

Feature: States

  Scenario: Initial state
    Given the ruby SDK
    And the java SDK
    And the python SDK
    And the hello_world polytrix config
    And the standard rspec setup
    When I run `bundle exec polytrix list`
    Then the output should contain:
    """
    Suite  Scenario     Implementor  Status
    Katas  hello world  ruby         <Not Found>
    Katas  hello world  java         <Not Found>
    Katas  hello world  python       <Not Found>
    """

  @no-clobber
  Scenario: State after execution
    Given I run `bundle exec polytrix exec python`
    When I run `bundle exec polytrix list`
    Then the output should contain:
    """
    Suite  Scenario     Implementor  Status
    Katas  hello world  ruby         <Not Found>
    Katas  hello world  java         <Not Found>
    Katas  hello world  python       Executed
    """

  @no-clobber
  Scenario: State after verification
    Given I run `bundle exec polytrix verify ruby`
    When I run `bundle exec polytrix list`
    Then the output should contain:
    """
    Suite  Scenario     Implementor  Status
    Katas  hello world  ruby         Verified (x1)
    Katas  hello world  java         <Not Found>
    Katas  hello world  python       Executed
    """

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
polytrix-0.1.2 features/states.feature
polytrix-0.1.1 features/states.feature