features/install_command.feature in berkshelf-1.2.1 vs features/install_command.feature in berkshelf-1.3.0.rc1

- old
+ new

@@ -5,10 +5,11 @@ Scenario: installing a Berksfile that contains a source with a default location Given I write to "Berksfile" with: """ cookbook "mysql", "1.2.4" + cookbook "openssl", "1.0.0" """ When I successfully run `berks install` Then the cookbook store should have the cookbooks: | mysql | 1.2.4 | | openssl | 1.0.0 | @@ -159,9 +160,10 @@ Scenario: installing a Berksfile that contains an explicit site location Given I write to "Berksfile" with: """ cookbook "mysql", "1.2.4", site: "http://cookbooks.opscode.com/api/v1/cookbooks" + cookbook "openssl", "1.0.0", site: "http://cookbooks.opscode.com/api/v1/cookbooks" """ When I successfully run `berks install` Then the cookbook store should have the cookbooks: | mysql | 1.2.4 | | openssl | 1.0.0 |