spec/acceptance/cli/update_spec.rb in appraisal-2.1.0 vs spec/acceptance/cli/update_spec.rb in appraisal-2.2.0

- old
+ new

@@ -23,11 +23,12 @@ end end context 'with no arguments' do it 'updates all the gems' do - run 'appraisal update' + output = run 'appraisal update' + expect(output).to include("gemfiles/dummy.gemfile bundle update") expect(content_of 'gemfiles/dummy.gemfile.lock').to include 'dummy (1.0.1)' expect(content_of 'gemfiles/dummy.gemfile.lock').to include 'dummy2 (1.0.1)' end end