Sha256: e165b95099f7e258d35130cdc21f0d16fca138540cabb71de938246bca101372

Contents?: true

Size: 934 Bytes

Versions: 65

Compression:

Stored size: 934 Bytes

Contents

Feature: berks shelf list
  Scenario: With no cookbooks in the store
    When I successfully run `berks shelf list`
    Then the output should contain:
      """
      There are no cookbooks in the Berkshelf shelf
      """

  Scenario: With two cookbooks in the store
    Given the cookbook store has the cookbooks:
      | fake | 1.0.0 |
      | ekaf | 2.3.4 |
    When I successfully run `berks shelf list`
    Then the output should contain:
      """
      Cookbooks in the Berkshelf shelf:
        * ekaf (2.3.4)
        * fake (1.0.0)
      """

  Scenario: With multiple cookbook versions installed
    Given the cookbook store has the cookbooks:
      | fake | 1.0.0 |
      | fake | 1.1.0 |
      | fake | 1.2.0 |
      | fake | 2.0.0 |
    When I successfully run `berks shelf list`
    Then the output should contain:
      """
      Cookbooks in the Berkshelf shelf:
        * fake (1.0.0, 1.1.0, 1.2.0, 2.0.0)
      """

Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
berkshelf-7.0.7 features/commands/shelf/list.feature
berkshelf-6.3.4 features/commands/shelf/list.feature
berkshelf-7.0.6 features/commands/shelf/list.feature
berkshelf-7.0.5 features/commands/shelf/list.feature
berkshelf-6.3.3 features/commands/shelf/list.feature
berkshelf-7.0.4 features/commands/shelf/list.feature
berkshelf-7.0.3 features/commands/shelf/list.feature
berkshelf-7.0.2 features/commands/shelf/list.feature
berkshelf-7.0.1 features/commands/shelf/list.feature
berkshelf-7.0.0 features/commands/shelf/list.feature
berkshelf-6.3.2 features/commands/shelf/list.feature
berkshelf-6.3.1 features/commands/shelf/list.feature
berkshelf-6.3.0 features/commands/shelf/list.feature
berkshelf-6.2.2 features/commands/shelf/list.feature
berkshelf-6.2.1 features/commands/shelf/list.feature
berkshelf-6.2.0 features/commands/shelf/list.feature
berkshelf-6.1.1 features/commands/shelf/list.feature
berkshelf-6.1.0 features/commands/shelf/list.feature
berkshelf-6.0.1 features/commands/shelf/list.feature
berkshelf-6.0.0 features/commands/shelf/list.feature