Sha256: 73422bddd4bd1b4eb2fc8f52730003a5771165372c2d5ccf52bb0e931163a8cf

Contents?: true

Size: 649 Bytes

Versions: 18

Compression:

Stored size: 649 Bytes

Contents

Feature: Vendoring cookbooks to a specific path
  As a user of Berkshelf
  I want to be able to install cookbooks to a specific directory
  So I vendor my cookbooks and package them with my application

  Scenario: With a path option
    Given the cookbook store has the cookbooks:
      | fake | 1.0.0 |
    Given I write to "Berksfile" with:
      """
      site :opscode
      cookbook 'fake', '1.0.0'
      """
    When I run the install command with flags:
      | --path vendor/cookbooks |
    Then the following directories should exist:
      | vendor/cookbooks          |
      | vendor/cookbooks/fake |
    And the exit status should be 0

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
berkshelf-2.0.18 features/vendor_install.feature
berkshelf-2.0.17 features/vendor_install.feature
berkshelf-2.0.16 features/vendor_install.feature
berkshelf-2.0.15 features/vendor_install.feature
berkshelf-2.0.14 features/vendor_install.feature
berkshelf-2.0.13 features/vendor_install.feature
berkshelf-2.0.12 features/vendor_install.feature
berkshelf-2.0.11 features/vendor_install.feature
berkshelf-2.0.10 features/vendor_install.feature
berkshelf-2.0.9 features/vendor_install.feature
berkshelf-2.0.8 features/vendor_install.feature
berkshelf-2.0.7 features/vendor_install.feature
berkshelf-2.0.6 features/vendor_install.feature
berkshelf-2.0.5 features/vendor_install.feature
berkshelf-2.0.4 features/vendor_install.feature
berkshelf-2.0.3 features/vendor_install.feature
berkshelf-2.0.1 features/vendor_install.feature
berkshelf-2.0.0 features/vendor_install.feature