Sha256: 497510fa0632a5012d382c918331e87e05833b151dcaf953172b6d47d5b195fc

Contents?: true

Size: 581 Bytes

Versions: 12

Compression:

Stored size: 581 Bytes

Contents

Feature: update
  As a user
  I want a way to update the versions without clearing out the files I've downloaded
  So that I can update faster than a clean install

  Scenario: knife berkshelf update
    Given I write to "Berksfile" with:
      """
      cookbook "artifact", "0.10.0"
      """
    Given I write to "Berksfile.lock" with:
      """
      cookbook 'artifact', :locked_version => '0.0.1'
      """
    When I run the update command
    Then the file "Berksfile.lock" should contain exactly:
      """
      cookbook 'artifact', :locked_version => '0.10.0'
      """

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
berkshelf-1.0.0.rc2 features/update.feature
berkshelf-1.0.0.rc1 features/update.feature
berkshelf-0.6.0.beta4 features/update.feature
berkshelf-0.6.0.beta3 features/update.feature
berkshelf-0.6.0.beta2 features/update.feature
berkshelf-0.5.1 features/update.feature
berkshelf-0.6.0.beta1 features/update.feature
berkshelf-0.5.0 features/update.feature
berkshelf-0.5.0.rc4 features/update.feature
berkshelf-0.5.0.rc3 features/update.feature
berkshelf-0.5.0.rc2 features/update.feature
berkshelf-0.5.0.rc1 features/update.feature