Sha256: b02942d08d65094358037ff9169adc874bce92db42d73bdd9aa80e0844ecaa63
Contents?: true
Size: 913 Bytes
Versions: 51
Compression:
Stored size: 913 Bytes
Contents
Feature: berks verify Scenario: running verify when there is no Lockfile present Given a cookbook named "sparkle_motion" And I cd to "sparkle_motion" And I have a Berksfile pointing at the local Berkshelf API with: """ metadata """ And I run `berks verify` Then the output should contain: """ Lockfile not found! Run `berks install` to create the lockfile. """ And the exit status should be "LockfileNotFound" Scenario: running verify when there is a valid Lockfile present Given a cookbook named "sparkle_motion" And I cd to "sparkle_motion" And I have a Berksfile pointing at the local Berkshelf API with: """ metadata """ When I successfully run `berks install` And I successfully run `berks verify` Then the output should contain: """ Verifying (1) cookbook(s)... Verified. """
Version data entries
51 entries across 51 versions & 1 rubygems