Sha256: 189d6be997ac9033cc44e6845bed34606bbc637642f705a12f5e2a375aa5c51f

Contents?: true

Size: 999 Bytes

Versions: 3

Compression:

Stored size: 999 Bytes

Contents

Feature: Bower
  Scenario: Sprockets can pull underscore from bower
    Given the Server is running at "bower-app"
    When I go to "/javascripts/application.js"
    Then I should see "return _;"

  Scenario: Sprockets can build underscore from bower
    Given a successfully built app at "bower-app"
    When I cd to "build"
    Then the following files should exist:
      | javascripts/application.js |
    And the file "javascripts/application.js" should contain "return _;"

  Scenario: Sprockets should not mess with bower.json
    Given a successfully built app at "bower-json-app"
    When I cd to "build"
    Then the following files should exist:
      | javascripts/bower.json |
    And the file "javascripts/bower.json" should contain '"name": "my-project",'

  Scenario: Assets can be added to the build with import_asset from bower dir
    Given a successfully built app at "bower-app"
    When I cd to "build"
    Then a file named "javascripts/underscore/underscore.js" should exist

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
middleman-sprockets-3.3.3 features/bower.feature
middleman-sprockets-3.3.2 features/bower.feature
middleman-sprockets-3.3.1 features/bower.feature