Sha256: 64f0de6e85887a541592aade5c498c5c365e75a76ff428c7822dd96b93efacb8

Contents?: true

Size: 430 Bytes

Versions: 2

Compression:

Stored size: 430 Bytes

Contents

require 'spec_helper'

describe "installing dependencies parallely", :realworld => true do
  it "installs gems parallely" do
    gemfile <<-G
      source "https://rubygems.org"

      gem 'activesupport', '~> 3.2.13'
      gem 'faker', '~> 1.1.2'
    G

    bundle :install, :jobs => 4
    bundle "show activesupport"
    expect(out).to match(/activesupport/)

    bundle "show faker"
    expect(out).to match(/faker/)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bundler-1.4.0.pre.2 spec/realworld/parallel_install_spec.rb
bundler-1.4.0.pre.1 spec/realworld/parallel_install_spec.rb