From 57d8890bf71081a76cdf3a14bcf4b0e820933ede Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Wed, 31 Jul 2013 01:50:04 +0530 Subject: Switch from installing Rails to faker & AS --- spec/realworld/parallel_install_spec.rb | 11 ++++++----- 1 file 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 -- cgit v1.2.1