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-5.6.5 features/commands/shelf/list.feature
berkshelf-5.6.4 features/commands/shelf/list.feature
berkshelf-5.6.3 features/commands/shelf/list.feature
berkshelf-5.6.2 features/commands/shelf/list.feature
berkshelf-5.6.1 features/commands/shelf/list.feature
berkshelf-5.6.0 features/commands/shelf/list.feature
berkshelf-5.5.0 features/commands/shelf/list.feature
berkshelf-5.4.0 features/commands/shelf/list.feature
berkshelf-5.3.0 features/commands/shelf/list.feature
berkshelf-5.2.0 features/commands/shelf/list.feature
berkshelf-5.1.0 features/commands/shelf/list.feature
berkshelf-5.0.0 features/commands/shelf/list.feature
berkshelf-4.3.5 features/commands/shelf/list.feature
berkshelf-4.3.3 features/commands/shelf/list.feature
berkshelf-4.3.2 features/commands/shelf/list.feature
berkshelf-4.3.1 features/commands/shelf/list.feature
berkshelf-4.3.0 features/commands/shelf/list.feature
berkshelf-4.2.3 features/commands/shelf/list.feature
berkshelf-4.2.2 features/commands/shelf/list.feature
berkshelf-4.2.1 features/commands/shelf/list.feature