Sha256: 28ab520405d1f0fcff21f78c1d1e6a6c34d8644e62afa532c8eb922b01854ce8

Contents?: true

Size: 1.05 KB

Versions: 8

Compression:

Stored size: 1.05 KB

Contents

Feature: Interactive process control

  In order to test interactive command line applications
  As a developer using Cucumber
  I want to use the interactive session steps

  Scenario: Running ruby interactively
    Given a file named "echo.rb" with:
      """
      while res = gets.chomp
        break if res == "quit"
        puts res.reverse
      end
      """
    When I run `ruby echo.rb` interactively
    And I type "hello, world"
    And I type "quit"
    Then the output should contain:
      """
      dlrow ,olleh
      """

  Scenario: Running a native binary interactively
    When I run `bc -q` interactively
    And I type "4 + 3"
    And I type "quit"
    Then the output should contain:
      """
      7
      """

  Scenario: Stop processes before checking for filesystem changes 
    See: http://github.com/aslakhellesoy/aruba/issues#issue/17 for context

    Given a directory named "rename_me"
    When I run `mv rename_me renamed` interactively
    Then a directory named "renamed" should exist
    And a directory named "rename_me" should not exist

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aruba-0.4.3 features/interactive.feature
aruba-0.4.2 features/interactive.feature
aruba-0.4.1 features/interactive.feature
aruba-0.4.0 features/interactive.feature
aruba-0.3.7 features/interactive.feature
aruba-0.3.6 features/interactive.feature
aruba-0.3.5 features/interactive.feature
aruba-0.3.4 features/interactive.feature