2009-11-22 15:37:11 -08:00
|
|
|
Feature: Minify Javascript
|
|
|
|
In order reduce bytes sent to client and appease YSlow
|
2011-05-29 17:26:58 +02:00
|
|
|
|
|
|
|
Background:
|
|
|
|
Given current environment is "build"
|
|
|
|
|
2009-11-22 15:37:11 -08:00
|
|
|
Scenario: Rendering inline js with the feature disabled
|
|
|
|
Given "minify_javascript" feature is "disabled"
|
2011-12-29 19:28:49 -08:00
|
|
|
And the Server is running at "minify-js-app"
|
2009-11-22 15:37:11 -08:00
|
|
|
When I go to "/inline-js.html"
|
2010-09-04 20:26:48 -07:00
|
|
|
Then I should see "10" lines
|
2011-12-12 13:54:04 -08:00
|
|
|
|
|
|
|
Scenario: Rendering inline js with a passthrough minifier
|
|
|
|
Given the Server is running at "passthrough-app"
|
|
|
|
When I go to "/inline-js.html"
|
|
|
|
Then I should see "11" lines
|
2011-05-29 17:26:58 +02:00
|
|
|
|
|
|
|
Scenario: Rendering inline js with the feature enabled
|
|
|
|
Given "minify_javascript" feature is "enabled"
|
2011-12-29 19:28:49 -08:00
|
|
|
And the Server is running at "minify-js-app"
|
2011-05-29 17:26:58 +02:00
|
|
|
When I go to "/inline-js.html"
|
|
|
|
Then I should see "5" lines
|
2011-12-12 13:54:04 -08:00
|
|
|
|
|
|
|
Scenario: Rendering external js with the feature enabled
|
|
|
|
Given "minify_javascript" feature is "enabled"
|
2011-12-29 19:28:49 -08:00
|
|
|
And the Server is running at "minify-js-app"
|
2011-12-12 13:54:04 -08:00
|
|
|
When I go to "/javascripts/js_test.js"
|
|
|
|
Then I should see "1" lines
|
|
|
|
|
|
|
|
Scenario: Rendering external js with a passthrough minifier
|
|
|
|
And the Server is running at "passthrough-app"
|
|
|
|
When I go to "/javascripts/js_test.js"
|
2011-12-12 14:20:20 -08:00
|
|
|
Then I should see "8" lines
|
2011-05-29 17:26:58 +02:00
|
|
|
|
|
|
|
Scenario: Rendering inline js (coffeescript) with the feature enabled
|
|
|
|
Given "minify_javascript" feature is "enabled"
|
2011-12-29 19:28:49 -08:00
|
|
|
And the Server is running at "minify-js-app"
|
2011-05-29 17:26:58 +02:00
|
|
|
When I go to "/inline-coffeescript.html"
|
2011-12-12 13:54:04 -08:00
|
|
|
Then I should see "5" lines
|
|
|
|
|
|
|
|
Scenario: Rendering external js (coffeescript) with the feature enabled
|
|
|
|
Given "minify_javascript" feature is "enabled"
|
2011-12-29 19:28:49 -08:00
|
|
|
And the Server is running at "minify-js-app"
|
2011-12-12 13:54:04 -08:00
|
|
|
When I go to "/javascripts/coffee_test.js"
|
|
|
|
Then I should see "1" lines
|
|
|
|
|
|
|
|
Scenario: Rendering inline js (coffeescript) with a passthrough minifier
|
|
|
|
Given the Server is running at "passthrough-app"
|
|
|
|
When I go to "/inline-coffeescript.html"
|
|
|
|
Then I should see "17" lines
|
|
|
|
|
|
|
|
Scenario: Rendering external js (coffeescript) with a passthrough minifier
|
|
|
|
And the Server is running at "passthrough-app"
|
|
|
|
When I go to "/javascripts/coffee_test.js"
|
2011-12-12 14:20:20 -08:00
|
|
|
Then I should see "11" lines
|