Sha256: 898f9d953ac24fe892fc52ac9e4e8f260b06cc0f6ada2192fb7a586712797337

Contents?: true

Size: 942 Bytes

Versions: 12

Compression:

Stored size: 942 Bytes

Contents

Feature: Simple Reporting
  I want to be able to build a report

  Scenario: Help can be printed
    When I run bin/cobench with "-h"
    Then Exit code is zero
    And Stdout contains "--help"

  Scenario: Version can be printed
    When I run bin/cobench with "--version"
    Then Exit code is zero

  Scenario: Simple report
    When I run bin/cobench with "--coder yegor256 --coder Jeff --verbose --dry --to foo"
    Then Stdout contains "XML saved to"
    And Exit code is zero

  Scenario: Simple report through real GitHub API
    When I run bin/cobench with "--coder=yegor256 --include=*/* --days=1 --verbose --delay=5000"
    Then Stdout contains "XML saved to"
    And Exit code is zero

  Scenario: Simple report with defaults
    Given I have a ".cobench" file with content:
    """
    --verbose

    --coder=john
    """
    When I run bin/cobench with "--dry"
    Then Stdout contains "XML saved to"
    And Exit code is zero

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cobench-0.0.49 features/cli.feature
cobench-0.0.48 features/cli.feature
cobench-0.0.47 features/cli.feature
cobench-0.0.46 features/cli.feature
cobench-0.0.45 features/cli.feature
cobench-0.0.44 features/cli.feature
cobench-0.0.43 features/cli.feature
cobench-0.0.42 features/cli.feature
cobench-0.0.41 features/cli.feature
cobench-0.0.40 features/cli.feature
cobench-0.0.39 features/cli.feature
cobench-0.0.38 features/cli.feature