update.feature 607 B

1234567891011121314151617
  1. @disable-bundler
  2. Feature: Update bourbon files
  3. Scenario: Updating updates an existing bourbon install
  4. When I install bourbon files
  5. And I write to "bourbon/_bourbon.scss" with:
  6. """
  7. foobar
  8. """
  9. And I update bourbon files
  10. Then the output should contain "Bourbon files updated."
  11. And the file "bourbon/_bourbon.scss" should not contain "foobar"
  12. Scenario: Updating does not generate a new bourbon install
  13. When I update bourbon files
  14. Then bourbon should not have been generated
  15. And the output should contain "No existing bourbon installation. Doing nothing."