Sha256: 76059f0d803c54aa9e045f48a1afb78911fd09e4e3c302dc5617507d56fc168a

Contents?: true

Size: 728 Bytes

Versions: 13

Compression:

Stored size: 728 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 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

13 entries across 13 versions & 1 rubygems

Version Path
cobench-0.0.31 features/cli.feature
cobench-0.0.30 features/cli.feature
cobench-0.0.29 features/cli.feature
cobench-0.0.28 features/cli.feature
cobench-0.0.27 features/cli.feature
cobench-0.0.26 features/cli.feature
cobench-0.0.25 features/cli.feature
cobench-0.0.24 features/cli.feature
cobench-0.0.23 features/cli.feature
cobench-0.0.22 features/cli.feature
cobench-0.0.21 features/cli.feature
cobench-0.0.20 features/cli.feature
cobench-0.0.19 features/cli.feature