Sha256: 7465a231dd2b13cb2b523711472cd9c86d335bbd0114a37be210ad2ca3158cb5

Contents?: true

Size: 581 Bytes

Versions: 5

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.1.0'
      """
    When I run the update command
    Then the file "Berksfile.lock" should contain exactly:
      """
      cookbook 'artifact', :locked_version => '0.10.0'
      """

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
berkshelf-1.0.4 features/update.feature
berkshelf-1.0.3 features/update.feature
berkshelf-1.0.2 features/update.feature
berkshelf-1.0.0 features/update.feature
berkshelf-1.0.0.rc3 features/update.feature