Sha256: 047f1685ba8c555fa417dcdb79f6fe5ddf877a4ed664607d8f1cb502118b438c
Contents?: true
Size: 936 Bytes
Versions: 2
Compression:
Stored size: 936 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
berkshelf-3.0.0.beta4 | features/commands/shelf/list.feature |
berkshelf-3.0.0.beta3 | features/commands/shelf/list.feature |