Sha256: e8ee3cb08af2a2c4cbf550454381320bef91e25cf36f2e2be406251e1a4457cb
Contents?: true
Size: 721 Bytes
Versions: 10
Compression:
Stored size: 721 Bytes
Contents
Feature: list command As a user with a Berksfile I want a way to show all my cookbooks and their versions without opening my Berksfile So that I can be more productive @slow_process Scenario: Running the list command Given I write to "Berksfile" with: """ cookbook "build-essential", "1.2.0" cookbook "chef-client", "1.2.0" cookbook "mysql", "1.2.4" """ And I successfully run `berks install` When I run `berks list` Then the output should contain: """ Cookbooks installed by your Berksfile: * build-essential (1.2.0) * chef-client (1.2.0) * mysql (1.2.4) * openssl (1.0.0) """ And the exit status should be 0
Version data entries
10 entries across 10 versions & 1 rubygems