Sha256: f690b354b4733d7217cdb36dd886a46995c0b17673188cb5d95d0387224208bf

Contents?: true

Size: 1.39 KB

Versions: 7

Compression:

Stored size: 1.39 KB

Contents

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     |
    And the master bourbon partial 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     |
    And the master bourbon partial 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

7 entries across 7 versions & 1 rubygems

Version Path
bourbon-7.3.0 features/install.feature
bourbon-7.2.0 features/install.feature
bourbon-7.1.0 features/install.feature
bourbon-7.0.0 features/install.feature
bourbon-6.0.0 features/install.feature
bourbon-5.1.0 features/install.feature
bourbon-5.0.1 features/install.feature