2011-12-16 01:05:15 +01:00
|
|
|
Feature: Middleman CLI
|
|
|
|
|
|
|
|
Scenario: Create a new project
|
2011-12-23 19:58:56 +01:00
|
|
|
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:
|
2012-03-25 05:37:03 +02:00
|
|
|
| Gemfile |
|
2012-05-05 06:11:11 +02:00
|
|
|
| .gitignore |
|
2011-12-16 07:11:59 +01:00
|
|
|
| config.rb |
|
2011-12-23 19:58:56 +01:00
|
|
|
| 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 |
|
2014-02-20 08:13:59 +01:00
|
|
|
|
|
|
|
Scenario: Create a new project in the current directory
|
|
|
|
Given a directory named "MY_PROJECT"
|
|
|
|
When I cd to "MY_PROJECT"
|
|
|
|
And I run `middleman init`
|
|
|
|
Then the exit status should be 0
|
|
|
|
And the following files should exist:
|
|
|
|
| Gemfile |
|
|
|
|
| config.rb |
|
|
|
|
| source/index.html.erb |
|
|
|
|
|
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
|
2014-02-20 08:13:59 +01:00
|
|
|
|
2012-03-25 05:37:03 +02:00
|
|
|
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
|
2014-02-20 08:13:59 +01:00
|
|
|
|
2012-03-25 05:37:03 +02:00
|
|
|
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
|
2014-02-20 08:13:59 +01:00
|
|
|
|
2014-07-20 23:25:47 +02:00
|
|
|
# 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 |
|
|
|
|
# Then the following files should not exist:
|
|
|
|
# | config.ru |
|
|
|
|
# And the file "config.rb" should contain "set :js_dir, 'js'"
|
|
|
|
# Then a directory named "source" should exist
|
|
|
|
# When I cd to "source"
|
|
|
|
# Then the following files should exist:
|
|
|
|
# | index.html.erb |
|
|
|
|
# | layouts/layout.erb |
|
|
|
|
# | humans.txt |
|
|
|
|
# | js/main.js |
|