diff options
author | Andre Arko <andre@arko.net> | 2011-09-01 16:15:44 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2011-09-01 16:15:44 -0700 |
commit | bcaa751941b1593731444392de113e852cbb0e26 (patch) | |
tree | 7076d5965e0323fbfdeb1bbb3fc5f12ccfd5ff10 /spec/update | |
parent | da27033dc75274724c515f37d33767d7788fabb2 (diff) | |
download | bundler-bcaa751941b1593731444392de113e852cbb0e26.tar.gz |
stop using nonsensical Gem::Requirement#>
The method is deprecated starting in Rubygems 1.8.10 anyway
Diffstat (limited to 'spec/update')
-rw-r--r-- | spec/update/gems_spec.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/update/gems_spec.rb b/spec/update/gems_spec.rb index dcc6960203..282e13d8c6 100644 --- a/spec/update/gems_spec.rb +++ b/spec/update/gems_spec.rb @@ -115,7 +115,8 @@ describe "bundle update when a gem depends on a newer version of bundler" do it "should explain that bundler conflicted" do bundle "update" - out.should_not =~ /In snapshot/ - out.should =~ /Current Bundler version/ + out.should_not =~ /in snapshot/i + out.should =~ /current Bundler version/i + out.should =~ /perhaps you need to update bundler/i end end |