install.feature 713 B

1234567891011121314151617
  1. @disable-bundler
  2. Feature: Install bourbon files
  3. Scenario: Bourbon generates a new bourbon installation
  4. When I install bourbon files
  5. Then the sass directories should have been generated
  6. And the following directories should exist:
  7. | bourbon |
  8. | bourbon/lib |
  9. And the master bourbon partial should have been generated
  10. And the lib files should have been generated
  11. And the output should contain "Bourbon files installed to bourbon/"
  12. Scenario: Generating does not overwrite an existing bourbon directory
  13. Given bourbon is already installed
  14. When I install bourbon files
  15. Then the output should contain "Bourbon files already installed, doing nothing."