summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHemant Kumar <gethemant@gmail.com>2013-07-31 01:50:04 +0530
committerHemant Kumar <gethemant@gmail.com>2013-07-31 01:50:04 +0530
commit57d8890bf71081a76cdf3a14bcf4b0e820933ede (patch)
tree31c5908f71bb05099c5b500cfd55f24de8fc42a0
parent18d1e7022ed4beadec88fb62b28ac6b8e2aa6fae (diff)
downloadbundler-make-paralle-fetch-jruby.tar.gz
Switch from installing Rails to faker & ASmake-paralle-fetch-jruby
-rw-r--r--spec/realworld/parallel_install_spec.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/spec/realworld/parallel_install_spec.rb b/spec/realworld/parallel_install_spec.rb
index d7c0ebabb8..656d029bb3 100644
--- a/spec/realworld/parallel_install_spec.rb
+++ b/spec/realworld/parallel_install_spec.rb
@@ -5,14 +5,15 @@ describe "installing dependencies parallely", :realworld => true do
gemfile <<-G
source "https://rubygems.org"
- gem 'rails', "~> 3.2.13"
+ gem 'activesupport', '~> 3.2.13'
+ gem 'faker', '~> 1.1.2'
G
bundle :install, :jobs => 4
- bundle "show rails"
- expect(out).to match(/rails/)
+ bundle "show activesupport"
+ expect(out).to match(/activesupport/)
- bundle "show rack"
- expect(out).to match(/rack/)
+ bundle "show faker"
+ expect(out).to match(/faker/)
end
end