Sha256: b26235586d2efe085b6e6c67ae52e916290a7d18d7e5d7de86b0c4fc6f785843
Contents?: true
Size: 1.9 KB
Versions: 2
Compression:
Stored size: 1.9 KB
Contents
Feature: Sprockets Scenario: Sprockets JS require Given the Server is running at "test-app" When I go to "/javascripts/sprockets_base.js" Then I should see "sprockets_sub_function" Scenario: Sprockets JS require with custom :js_dir Given the Server is running at "sprockets-app" When I go to "/library/js/sprockets_base.js" Then I should see "sprockets_sub_function" Scenario: Plain JS require with custom :js_dir Given the Server is running at "sprockets-app" When I go to "/library/css/plain.css" Then I should see "helloWorld" Scenario: Sprockets JS should have access to yaml data Given the Server is running at "test-app" When I go to "/javascripts/multiple_engines.js" Then I should see "Hello One" Scenario: Multiple engine files should build correctly Given a built app at "test-app" Then "javascripts/multiple_engines.js" should exist at "test-app" and include "Hello One" And cleanup built app at "test-app" Scenario: Sprockets CSS require //require Given the Server is running at "test-app" When I go to "/stylesheets/sprockets_base1.css" Then I should see "hello" Scenario: Sprockets CSS require @import Given the Server is running at "test-app" When I go to "/stylesheets/sprockets_base2.css" Then I should see "hello" Scenario: Sprockets CSS require with custom :css_dir //require Given the Server is running at "sprockets-app" When I go to "/library/css/sprockets_base1.css" Then I should see "hello" Scenario: Plain CSS require with custom :css_dir Given the Server is running at "sprockets-app" When I go to "/library/css/plain.css" Then I should see "helloWorld" Scenario: Sprockets CSS require with custom :css_dir @import Given the Server is running at "sprockets-app" When I go to "/library/css/sprockets_base2.css" Then I should see "hello"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
middleman-2.0.14.pre2-x86-mingw32 | features/sprockets.feature |
middleman-2.0.14.pre2 | features/sprockets.feature |