Sha256: cd9306c69b14bef6e87470ff6cd97056e39c4de7827826836ca5cece1fde507f

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

@disable-bundler
Feature: Install minable files

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

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

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
minable-0.1.3 features/install.feature
minable-0.1.2 features/install.feature
minable-0.1.1 features/install.feature
minable-0.0.2 features/install.feature
minable-0.0.1 features/install.feature