Sha256: cbe8ee6bd11502d1398a82c35e5219bfd04cff2d91c88b0ab5aedaf017775fba

Contents?: true

Size: 864 Bytes

Versions: 6

Compression:

Stored size: 864 Bytes

Contents

Feature: Berkshelf resolver
  Background:
    * the Berkshelf API server's cache is empty
    * the Chef Server has cookbooks:
      | berkshelf | 1.0.0 |
      | berkshelf | 2.0.0 |
    * the Berkshelf API server's cache is up to date
    * I have a Berksfile pointing at the local Berkshelf API with:
      """
      cookbook 'berkshelf'
      """

  Scenario: with DEBUG_RESOLVER=1
    Given the environment variable DEBUG_RESOLVER is "1"
    When I successfully run `berks install`
    Then the output should contain:
      """
      Attempting to find a solution
      Adding constraint berkshelf >= 0.0.0 from root
      """

  Scenario: without DEBUG_RESOLVER
    Given the environment variable DEBUG_RESOLVER is nil
    When I successfully run `berks install`
    Then the output should not contain:
      """
      Attempting to find a solution
      """

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
berkshelf-3.0.0.beta8 features/resolver.feature
berkshelf-3.0.0.beta7 features/resolver.feature
berkshelf-3.0.0.beta6 features/resolver.feature
berkshelf-3.0.0.beta5 features/resolver.feature
berkshelf-3.0.0.beta4 features/resolver.feature
berkshelf-3.0.0.beta3 features/resolver.feature