Cucumber Features

Expand All

Collapse All

Feature: My bootstrapped app kinda works

In order to keep track of my time
I want use a command line tool to manage my pomodoros

features/doro.feature:5

Scenario: App just runs

  1. When I run `doro help`
    aruba-0.13.0/lib/aruba/cucumber/command.rb:13
  2. Then the exit status should be 0
    aruba-0.13.0/lib/aruba/cucumber/command.rb:277
features/doro.feature:9

Scenario: App lists todos

  1. When I run `doro list`
    aruba-0.13.0/lib/aruba/cucumber/command.rb:13
  2. Then the output should contain "["
    aruba-0.13.0/lib/aruba/cucumber/command.rb:159
  3. And the output should contain "]"
    aruba-0.13.0/lib/aruba/cucumber/command.rb:159
features/doro.feature:14

Scenario: App can start a pomodoro

  1. When I run `doro start test task`
    aruba-0.13.0/lib/aruba/cucumber/command.rb:13
  2. Then the output shold contain
    features/doro.feature:16
    Then(/^the output shold contain$/) do
      pending # Write code here that turns the phrase above into concrete actions
    end