Sha256: adfa0852a536bd0fe7771845bf3fad5a1497767f2939783c070df1697930549d
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
@disable-bundler Feature: Generate new mologue app In order to start a new project with mologue As a CLI I want to generate a rails3 app with mologue Scenario: Run mologue new my_app When I run "mologue 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 "Mologue just added like 6 hours to your life." Scenario: Run mologue new my_app --no-auth When I run "mologue 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 "Mologue just added like 6 hours to your life." Scenario: Run mologue new my_app --no-roles When I run "mologue 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 "Mologue just added like 6 hours to your life." Scenario: Run mologue new my_app --no-admin When I run "mologue 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 "Mologue just added like 6 hours to your life." Scenario: Run mologue new my_app --no-admin --no-roles When I run "mologue 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 "Mologue just added like 6 hours to your life."
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mologue-0.0.1 | features/new.feature |