aboutsummaryrefslogtreecommitdiffstats
path: root/spec/install
diff options
context:
space:
mode:
authorTim Moore <tmoore@incrementalism.net>2015-02-18 08:01:35 +1100
committerTim Moore <tmoore@incrementalism.net>2015-02-18 08:01:35 +1100
commit28791072377019b89e561ccf8b034c4380e99a14 (patch)
tree6e91618b88ffa0df0834c1dba6cd80e3d8240245 /spec/install
parent13d5e08de1e1b957bbf4c5fecd8d3e532a09c121 (diff)
parentda20a792c60dd2e8d82b1179b48b14533422ebb8 (diff)
downloadbundler-28791072377019b89e561ccf8b034c4380e99a14.tar.gz
Merge tag 'v1.8.2'
Version 1.8.2
Diffstat (limited to 'spec/install')
-rw-r--r--spec/install/gems/groups_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/install/gems/groups_spec.rb b/spec/install/gems/groups_spec.rb
index afce362a..23af4aee 100644
--- a/spec/install/gems/groups_spec.rb
+++ b/spec/install/gems/groups_spec.rb
@@ -41,14 +41,14 @@ describe "bundle install with groups" do
end
it "sets up everything if Bundler.setup is used with no groups" do
- out = run("require 'rack'; puts RACK")
- expect(out).to eq('1.0.0')
+ output = run("require 'rack'; puts RACK")
+ expect(output).to eq('1.0.0')
- out = run("require 'activesupport'; puts ACTIVESUPPORT")
- expect(out).to eq('2.3.5')
+ output = run("require 'activesupport'; puts ACTIVESUPPORT")
+ expect(output).to eq('2.3.5')
- out = run("require 'thin'; puts THIN")
- expect(out).to eq('1.0')
+ output = run("require 'thin'; puts THIN")
+ expect(output).to eq('1.0')
end
it "removes old groups when new groups are set up" do
@@ -62,12 +62,12 @@ describe "bundle install with groups" do
end
it "sets up old groups when they have previously been removed" do
- out = run <<-RUBY, :emo
+ output = run <<-RUBY, :emo
Bundler.setup(:default)
Bundler.setup(:default, :emo)
require 'thin'; puts THIN
RUBY
- expect(out).to eq('1.0')
+ expect(output).to eq('1.0')
end
end