Sha256: 0a5c5e9c53ffc6117584940b03cd01586beaee7572a59f26b9451c80ea49d3e4

Contents?: true

Size: 1.85 KB

Versions: 9

Compression:

Stored size: 1.85 KB

Contents

@disable-bundler
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

  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."

  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."

  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."

  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."

  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

9 entries across 9 versions & 1 rubygems

Version Path
prologue-0.6.0 features/new.feature
prologue-0.5.5 features/new.feature
prologue-0.5.0 features/new.feature
prologue-0.4.0 features/new.feature
prologue-0.3.11 features/new.feature
prologue-0.3.10 features/new.feature
prologue-0.3.9 features/new.feature
prologue-0.3.7 features/new.feature
prologue-0.3.6 features/new.feature