Sha256: c3fc9f8da0dbd92a8f58e76bcefdcf88b409d39cb0e48716517d6bd8114149c3

Contents?: true

Size: 1.09 KB

Versions: 16

Compression:

Stored size: 1.09 KB

Contents

Feature: Verify
  Scenario: No tests
    When I run `recog_verify.rb no_tests.xml`
    Then it should pass with:
      """
      SUMMARY: Test completed with 0 successful, 0 warnings, and 0 failures
      """

  Scenario: Successful tests
    When I run `recog_verify.rb successful_tests.xml`
    Then it should pass with:
      """
      SUMMARY: Test completed with 4 successful, 0 warnings, and 0 failures
      """

  Scenario: Tests with warnings
    When I run `recog_verify.rb tests_with_warnings.xml`
    Then it should pass with:
      """
      WARN: 'Pure-FTPd' has no test cases
      SUMMARY: Test completed with 1 successful, 1 warnings, and 0 failures
      """

  Scenario: Tests with failures
    When I run `recog_verify.rb tests_with_failures.xml`
    Then it should pass with:
      """
      FAIL: 'foo test' failed to match "bar" with (?-mix:^foo$)'
      FAIL: '' failed to match "This almost matches" with (?-mix:^This matches$)'
      FAIL: 'bar test' failed to find expected capture group os.version '5.0'
      SUMMARY: Test completed with 0 successful, 0 warnings, and 3 failures
      """


Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
recog-1.0.15 features/verify.feature
recog-1.0.14 features/verify.feature
recog-1.0.13 features/verify.feature
recog-1.0.12 features/verify.feature
recog-1.0.11 features/verify.feature
recog-1.0.10 features/verify.feature
recog-1.0.9 features/verify.feature
recog-1.0.8 features/verify.feature
recog-1.0.7 features/verify.feature
recog-1.0.6 features/verify.feature
recog-1.0.5 features/verify.feature
recog-1.0.4 features/verify.feature
recog-1.0.3 features/verify.feature
recog-1.0.2 features/verify.feature
recog-1.0.1 features/verify.feature
recog-1.0.0 features/verify.feature