Sha256: c9376f6d0923ff40aaa24a3815917f1bc47a006060aaf5094db5276c0073d2e1

Contents?: true

Size: 804 Bytes

Versions: 8

Compression:

Stored size: 804 Bytes

Contents

Feature: Adhearsion Ahn CLI (Create)
  As an Adhearsion user
  I want the ahn command to allow creating an app
  So that I can write an Adhearsion app

  Scenario: Command create with correct arguments
    When I run `ahn create path/somewhere`
    And I cd to "path/somewhere"
    Then the following files should exist:
      | Gemfile               |
      | README.md             |
      | Rakefile              |
      | config/adhearsion.rb  |
      | config/environment.rb |
      | spec/spec_helper.rb   |
    And the file "config/adhearsion.rb" should contain "Adhearsion.router"
    Then the exit status should be 0

  Scenario: Running create with no arguments
    When I run `ahn create`
    Then the output should contain:
    """
    no arguments
    """
    And the exit status should be 1

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
adhearsion-2.4.0 features/cli_create.feature
adhearsion-2.4.0.beta3 features/cli_create.feature
adhearsion-2.4.0.beta2 features/cli_create.feature
adhearsion-2.4.0.beta1 features/cli_create.feature
adhearsion-2.3.5 features/cli_create.feature
adhearsion-2.3.4 features/cli_create.feature
adhearsion-2.3.3 features/cli_create.feature
adhearsion-2.3.2 features/cli_create.feature