Sha256: a0da60a9df61423d27c7b3d7db34ea963ec4fad0107ddc4a4523e68a6747d9c6

Contents?: true

Size: 564 Bytes

Versions: 7

Compression:

Stored size: 564 Bytes

Contents

Feature: contingent command
  As a user with a Berksfile
  I want a way to the cookbooks that depend on another
  So that I can better understand my infrastructure

  Scenario: Running the contingent command against a cookbook
    Given I write to "Berksfile" with:
      """
      cookbook "database", "1.3.12"
      """
    And I successfully run `berks install`
    When I run `berks contingent mysql`
    Then the output should contain:
      """
      Cookbooks contingent upon mysql:
        * database (1.3.12)
      """
    And the exit status should be 0

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
berkshelf-1.4.6 features/contingent_command.feature
berkshelf-1.4.5 features/contingent_command.feature
berkshelf-1.4.4 features/contingent_command.feature
berkshelf-1.4.3 features/contingent_command.feature
berkshelf-1.4.2 features/contingent_command.feature
berkshelf-1.4.1 features/contingent_command.feature
berkshelf-1.4.0 features/contingent_command.feature