To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorUse default extensions when user doesn't supply them
- Scenarios
-
- Default extensions preview
- Default extensions preview
- Default extensions build
- Default extensions build with override
- Default extensions preview
-
- Given
- the Server is running at "implied-extensions-app"
- When
- I go to "/index.html"
- Then
- I should see "hello: world"
- When
- I go to "/index.erb"
- Then
- I should see "File Not Found"
- When
- I go to "/index"
- Then
- I should see "File Not Found"
- Default extensions preview
-
- Given
- a fixture app "implied-extensions-app"
- And
-
a file named "config.rb" with:
template_extensions :erb => :htm
- And
- the Server is running
- When
- I go to "/index.htm"
- Then
- I should see "hello: world"
- When
- I go to "/index.erb"
- Then
- I should see "File Not Found"
- When
- I go to "/index"
- Then
- I should see "File Not Found"
- When
- I go to "/index.html"
- Then
- I should see "File Not Found"
- Default extensions build
-
- Given
- a fixture app "implied-extensions-app"
- And
- a successfully built app at "implied-extensions-app"
- When
- I cd to "build"
- Then
-
the following files should exist:
index.html - Then
-
the following files should not exist:
index index.erb - And
- the file "index.html" should contain "hello: world"
- Default extensions build with override
-
- Given
- a fixture app "implied-extensions-app"
- And
-
a file named "config.rb" with:
template_extensions :erb => :htm
- And
- a successfully built app at "implied-extensions-app"
- When
- I cd to "build"
- Then
-
the following files should exist:
index.htm - Then
-
the following files should not exist:
index index.erb index.html
Last published over 7 years ago by middleman.