middleman/middleman-core/features/cli_init.feature

91 lines
3.9 KiB
Gherkin
Raw Normal View History

Feature: Middleman CLI
Scenario: Create a new project
Given I run `middleman init MY_PROJECT`
Then the exit status should be 0
2011-12-16 07:11:59 +01:00
When I cd to "MY_PROJECT"
Then the following files should exist:
| Gemfile |
| .gitignore |
2011-12-16 07:11:59 +01:00
| config.rb |
| source/index.html.erb |
| source/images/background.png |
| source/images/middleman.png |
| source/layouts/layout.erb |
| source/javascripts/all.js |
2012-01-02 23:48:47 +01:00
| source/stylesheets/all.css |
| source/stylesheets/normalize.css |
2011-12-21 21:13:28 +01:00
Scenario: Create a new project (alias i)
When I run `middleman i MY_PROJECT`
Then a directory named "MY_PROJECT" should exist
Scenario: Create a new project (alias new)
2011-12-21 21:13:28 +01:00
When I run `middleman new MY_PROJECT`
Then a directory named "MY_PROJECT" should exist
Scenario: Create a new project (alias n)
2011-12-21 21:13:28 +01:00
When I run `middleman n MY_PROJECT`
Then a directory named "MY_PROJECT" should exist
2011-12-16 07:11:59 +01:00
Scenario: Create a new project with Rack
When I run `middleman init MY_PROJECT --rack`
Then a directory named "MY_PROJECT" should exist
When I cd to "MY_PROJECT"
Then the following files should exist:
| config.rb |
| config.ru |
| Gemfile |
Scenario: Create a new HTML5 project
When I run `middleman init MY_PROJECT --template=html5`
Then a directory named "MY_PROJECT" should exist
When I cd to "MY_PROJECT"
Then the following files should exist:
| config.rb |
| Gemfile |
2011-12-16 07:11:59 +01:00
Then the following files should not exist:
| config.ru |
And the file "config.rb" should contain "set :js_dir, 'js'"
2011-12-16 07:11:59 +01:00
Then a directory named "source" should exist
When I cd to "source"
Then the following files should exist:
2012-12-15 23:49:50 +01:00
| index.html.erb |
| layouts/layout.erb |
2011-12-16 07:11:59 +01:00
| humans.txt |
2012-12-15 23:49:50 +01:00
| js/main.js |
2011-12-16 07:11:59 +01:00
Scenario: Create a new HTML5 project with Rack
When I run `middleman init MY_PROJECT --rack --template=html5`
Then a directory named "MY_PROJECT" should exist
When I cd to "MY_PROJECT"
Then the following files should exist:
| config.rb |
| config.ru |
| Gemfile |
Scenario: Create a new Mobile HTML5 project
When I run `middleman init MY_PROJECT --template=mobile`
Then a directory named "MY_PROJECT" should exist
When I cd to "MY_PROJECT"
Then the following files should exist:
| config.rb |
| Gemfile |
2011-12-16 07:11:59 +01:00
Then the following files should not exist:
| config.ru |
Then a directory named "source" should exist
When I cd to "source"
Then the following files should exist:
| index.html |
| humans.txt |
| js/libs/respond.min.js |
Scenario: Create a new Mobile HTML5 project with Rack
When I run `middleman init MY_PROJECT --rack --template=mobile`
Then a directory named "MY_PROJECT" should exist
When I cd to "MY_PROJECT"
Then the following files should exist:
| config.rb |
| config.ru |
| Gemfile |