Sha256: 423375d334f7a7b8dc170766eac1211e797f10975ab9889483c38cdc5ff0e7ba

Contents?: true

Size: 574 Bytes

Versions: 5

Compression:

Stored size: 574 Bytes

Contents

Feature: Command Line Processing
  As an estimator I want to be able to
  call Est as a command line tool

  Scenario: Estimates empty directory
    Given I have a "test.txt" file with content:
    """
    hello
    """
    When I run bin/est with "--dir=. --format=text"
    Then Exit code is zero
    And Stdout contains "Total: 0"

  Scenario: Estimates absent directory
    Given I have a "test.txt" file with content:
    """
    hello
    """
    When I run bin/est with "--dir=./absent-dir --format=text"
    Then Exit code is zero
    And Stdout contains "Total: 0"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
est-0.3.4 features/empty_dir.feature
est-0.3.3 features/empty_dir.feature
est-0.3.2 features/empty_dir.feature
est-0.3.1 features/empty_dir.feature
est-0.3 features/empty_dir.feature