Sha256: 8dbd95cb51429fac2ca87a12b9767c07f1a6e191fe9946e2cf61f8a20fc5d5e5

Contents?: true

Size: 1.34 KB

Versions: 7

Compression:

Stored size: 1.34 KB

Contents

Feature: Adhearsion Ahn CLI (start)
  As an Adhearsion user
  I want the ahn command to provide a 'start' command
  So that I can start an interactive Adhearsion application

  Scenario: Command start with no path outside of the app directory
    When I run `ahn start`
    Then the output should contain:
    """
    A valid path is required for start, unless run from an Adhearson app directory
    """
    And the exit status should be 1

  Scenario: Command start with no path inside of the app directory
    Given JRuby skip test
    Given that I create a valid app under "path/somewhere"
    When I cd to "path/somewhere"
    And I run `ahn start` interactively
    And I wait for output to contain "Starting connection to server"
    Then the output should contain "Adhearsion::Console: Launching Adhearsion Console"
    And the output should contain "AHN>"
    And the output should contain "Adhearsion shut down"

  Scenario: Command start with only path works properly
    Given JRuby skip test
    Given that I create a valid app under "path/somewhere"
    When I run `ahn start path/somewhere` interactively
    And I wait for output to contain "Starting connection to server"
    Then the output should contain "Adhearsion::Console: Launching Adhearsion Console"
    And the output should contain "AHN>"
    And the output should contain "Adhearsion shut down"

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
adhearsion-2.0.1 features/cli_start.feature
adhearsion-2.0.0 features/cli_start.feature
adhearsion-2.0.0.rc5 features/cli_start.feature
adhearsion-2.0.0.rc4 features/cli_start.feature
adhearsion-2.0.0.rc3 features/cli_start.feature
adhearsion-2.0.0.rc2 features/cli_start.feature
adhearsion-2.0.0.rc1 features/cli_start.feature