Sha256: fc1b88303ad2492d728e6c4e9788e5d13c433a99397ac66fb96e9f0bc8a29379

Contents?: true

Size: 1.93 KB

Versions: 5

Compression:

Stored size: 1.93 KB

Contents

Feature: Generate new prologue app
  In order to start a new project with prologue
  As a CLI
  I want to generate a rails3 app with prologue

  @disable-bundler
  Scenario: Run prologue new my_app
    When I run "prologue new my_app"
    Then the output should contain "Building authentication"
    And the output should contain "Building roles"
    And the output should contain "Building admin"
    And the output should contain "Prologue just added like 6 hours to your life."

  @disable-bundler
  Scenario: Run prologue new my_app --no-auth
    When I run "prologue new my_app --no-auth"
    Then the output should not contain "Building authentication"
    And the output should not contain "Building roles"
    And the output should not contain "Building admin"
    And the output should contain "Prologue just added like 6 hours to your life."

  @disable-bundler
  Scenario: Run prologue new my_app --no-roles
    When I run "prologue new my_app --no-roles"
    Then the output should contain "Building authentication"
    And the output should not contain "Building roles"
    And the output should contain "Building admin"
    And the output should contain "Prologue just added like 6 hours to your life."

  @disable-bundler
  Scenario: Run prologue new my_app --no-admin
    When I run "prologue new my_app --no-admin"
    Then the output should contain "Building authentication"
    And the output should contain "Building roles"
    And the output should not contain "Building admin"
    And the output should contain "Prologue just added like 6 hours to your life."

  @disable-bundler
  Scenario: Run prologue new my_app --no-admin --no-roles
    When I run "prologue new my_app --no-admin --no-roles"
    Then the output should contain "Building authentication"
    And the output should not contain "Building roles"
    And the output should not contain "Building admin"
    And the output should contain "Prologue just added like 6 hours to your life."

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
prologue-0.3.0 features/new.feature
prologue-0.2.0 features/new.feature
prologue-0.1.2 features/new.feature
prologue-0.1.1 features/new.feature
prologue-0.1.0 features/new.feature