2011-08-03 06:58:20 +02:00
|
|
|
Feature: Sprockets Gems
|
|
|
|
Scenario: Sprockets can pull jQuery from gem
|
2011-08-31 22:15:59 +02:00
|
|
|
Given the Server is running at "sprockets-app"
|
2011-10-26 18:38:47 +02:00
|
|
|
When I go to "/library/js/jquery_include.js"
|
2011-10-20 05:45:11 +02:00
|
|
|
Then I should see "var jQuery ="
|
2012-02-17 00:22:48 +01:00
|
|
|
|
2011-10-28 08:36:19 +02:00
|
|
|
# Scenario: Sprockets can pull CSS from gem
|
|
|
|
# Given the Server is running at "sprockets-app"
|
|
|
|
# When I go to "/library/css/bootstrap_include.css"
|
2012-02-17 00:22:48 +01:00
|
|
|
# Then I should see "Bootstrap"
|
|
|
|
|
|
|
|
Scenario: Sprockets can pull js from vendored assets
|
|
|
|
Given the Server is running at "sprockets-app"
|
|
|
|
When I go to "/library/js/vendored_include.js"
|
|
|
|
Then I should see "var vendored_js_included = true;"
|