features/commands/outdated.feature in berkshelf-3.0.0.beta3 vs features/commands/outdated.feature in berkshelf-3.0.0.beta4

- old
+ new

@@ -68,13 +68,13 @@ cookbook 'bacon', '1.0.0' """ When I run `berks outdated` Then the output should contain: """ - Could not find cookbook 'bacon (>= 0.0.0)'. Try running `berks install` to download and install the missing dependencies. + Could not find cookbook 'bacon (= 1.0.0)'. Try running `berks install` to download and install the missing dependencies. """ - And the exit status should be "LockfileNotFound" + And the exit status should be "CookbookNotFound" Scenario: When the cookbook is not installed And I have a Berksfile pointing at the local Berkshelf API with: """ @@ -83,8 +83,8 @@ And the Lockfile has: | bacon | 1.0.0 | When I run `berks outdated` Then the output should contain: """ - Could not find cookbook 'bacon (= 1.0.0)'. Try running `berks install` to download and install the missing dependencies. + Could not find cookbook 'bacon (1.0.0)'. Try running `berks install` to download and install the missing dependencies. """ And the exit status should be "CookbookNotFound"