2009-11-22 18:37:11 -05:00
|
|
|
Feature: Minify Javascript
|
|
|
|
In order reduce bytes sent to client and appease YSlow
|
2011-05-29 11:26:58 -04:00
|
|
|
|
|
|
|
Background:
|
|
|
|
Given current environment is "build"
|
|
|
|
|
2009-11-22 18:37:11 -05:00
|
|
|
Scenario: Rendering inline js with the feature disabled
|
|
|
|
Given "minify_javascript" feature is "disabled"
|
2011-07-24 01:53:17 -04:00
|
|
|
And the Server is running
|
2009-11-22 18:37:11 -05:00
|
|
|
When I go to "/inline-js.html"
|
2010-09-04 23:26:48 -04:00
|
|
|
Then I should see "10" lines
|
2011-05-29 11:26:58 -04:00
|
|
|
|
|
|
|
Scenario: Rendering inline js with the feature enabled
|
|
|
|
Given "minify_javascript" feature is "enabled"
|
2011-07-24 01:53:17 -04:00
|
|
|
And the Server is running
|
2011-05-29 11:26:58 -04:00
|
|
|
When I go to "/inline-js.html"
|
|
|
|
Then I should see "5" lines
|
|
|
|
|
|
|
|
Scenario: Rendering inline js (coffeescript) with the feature enabled
|
|
|
|
Given "minify_javascript" feature is "enabled"
|
2011-07-24 01:53:17 -04:00
|
|
|
And the Server is running
|
2011-05-29 11:26:58 -04:00
|
|
|
When I go to "/inline-coffeescript.html"
|
|
|
|
Then I should see "5" lines
|