features/status.feature in vendorificator-0.0.1 vs features/status.feature in vendorificator-0.1.0
- old
+ new
@@ -14,16 +14,16 @@
Scenario: status new module
When I run "vendor status"
Then command output includes /new\s+generated\/0.23/
Scenario: status up-to-date module
- When I run "vendor"
+ When I run "vendor sync"
And I run "vendor status"
Then command output includes /up to date\s+generated\/0.23/
Scenario: status outdated modules
- When I run "vendor"
+ When I run "vendor sync"
And I change Vendorfile to:
"""ruby
vendor 'generated', :version => '0.42' do |v|
File.open('README', 'w') { |f| f.puts "Hello, Updated, World!" }
File.open('VERSION', 'w') { |f| f.puts v.version }
@@ -39,9 +39,9 @@
chef_cookbook 'memcached'
"""
And I run "vendor status"
Then command output includes /new\s+memcached/
And command output does not include "runit"
- When I run "vendor"
+ When I run "vendor sync"
And I run "vendor status"
Then command output includes /up to date\s+memcached/
And command output includes /up to date\s+runit/