Feature: More default extensions Scenario: Default extensions preview Given the Server is running at "more-implied-extensions-app" When I go to "/test.html" Then I should see "Hello" When I go to "/test2.html" Then I should see "World" When I go to "/test3.html" Then I should see "Howdy" When I go to "/test4.html" Then I should see "HELLO" When I go to "/javascripts/app.js" Then I should see "derp" Then I should not see "I am in the layout" When I go to "/stylesheets/style.css" Then I should see "section" Then I should not see "I am in the layout" When I go to "/stylesheets/style2.css" Then I should see "section" Then I should not see "I am in the layout" Scenario: Default extensions build Given a fixture app "more-implied-extensions-app" And a successfully built app at "more-implied-extensions-app" When I cd to "build" Then the following files should exist: | test.html | | test2.html | | test3.html | | test4.html | | javascripts/app.js | | stylesheets/style.css | | stylesheets/style2.css | And the file "test.html" should contain "Hello" And the file "test2.html" should contain "World" And the file "test3.html" should contain "Howdy" And the file "test4.html" should contain "HELLO" And the file "javascripts/app.js" should contain "derp" And the file "javascripts/app.js" should not contain "I am in the layout" And the file "stylesheets/style.css" should contain "section" And the file "stylesheets/style.css" should not contain "I am in the layout" And the file "stylesheets/style2.css" should contain "section" And the file "stylesheets/style2.css" should not contain "I am in the layout"