Sha256: 142f97dd8dcccdff78f44f684b7dd7d65998c625a215d9bba8dbb8b5a2531ed1

Contents?: true

Size: 1.45 KB

Versions: 2

Compression:

Stored size: 1.45 KB

Contents

Feature: Show

  Scenario: Initial state
    Given the ruby project
    And the java project
    And the python project
    And the sample omnitest config
    And the hello_world skeptic config
    When I run `bundle exec omnitest show ruby 'hello world'`
    Then the output should contain:
    """
    katas-hello_world-ruby:                            <Not Found>
      Test suite:                                        Katas
      Test scenario:                                     hello world
      Project:                                           ruby
      Source:                                            sdks/ruby/katas/hello_world.rb
    """

  @no-clobber
  Scenario: State after testing
    Given I run `bundle exec omnitest test ruby`
    When I run `bundle exec omnitest show ruby 'hello world'`
    Then the output should contain:
    """
    katas-hello_world-ruby:                            Fully Verified (1 of 1)
      Test suite:                                        Katas
      Test scenario:                                     hello world
      Project:                                           ruby
      Source:                                            sdks/ruby/katas/hello_world.rb
      Execution result:
        Exit Status:                                       0
        Stdout:
          Hello, world!
        Stderr:
      Validations:
        default validator:                                 ✓ Passed
      Data from spies:
    """

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
omnitest-0.2.2 features/show.feature
omnitest-0.2.1 features/show.feature