Sha256: d1d196ac561a58fd3e29f7ff4e52b13d9e446d6884853e68f686aa9919799888

Contents?: true

Size: 1.59 KB

Versions: 2

Compression:

Stored size: 1.59 KB

Contents

@disable-bundler
Feature: Install bourbon files

  Scenario: Bourbon generates a new bourbon installation
    When I run `bundle exec bourbon install`
    Then the sass directories should have been generated
    And the following directories should exist:
      | bourbon     |
      | bourbon/lib |
    And the master bourbon partial should have been generated
    And the lib files should have been generated
    And the output should contain "Bourbon files installed to bourbon/"

  Scenario: Generating does not overwrite an existing bourbon directory
    Given bourbon is already installed
    When I run `bundle exec bourbon install`
    Then the output should contain "Bourbon files already installed, doing nothing."

  Scenario: Install Bourbon into a custom path
    When I run `bundle exec bourbon install --path=custom_path`
    Then the sass directories with "custom_path" prefix should have been generated
    And the following directories should exist:
      | custom_path/bourbon     |
      | custom_path/bourbon/lib |
    And the master bourbon partial should have been generated within "custom_path" directory
    And the lib files should have been generated within "custom_path" directory
    And the output should contain "Bourbon files installed to custom_path/bourbon/"

  Scenario: Forcing install of bourbon
    Given bourbon is already installed
    When I run `bundle exec bourbon install --force`
    Then the output from "bundle exec bourbon install --force" should contain "Bourbon files installed to bourbon/"
    And the output should not contain "Bourbon files already installed, doing nothing."

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bourbon-2.1.3 features/install.feature
bourbon-2.1.2 features/install.feature