mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
22 lines
422 B
Ruby
22 lines
422 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "spec_helper"
|
|
|
|
RSpec.describe "bundle install with complex dependencies", :realworld => true do
|
|
it "resolves quickly" do
|
|
gemfile <<-G
|
|
source 'https://rubygems.org'
|
|
|
|
gem "actionmailer"
|
|
gem "mongoid", ">= 0.10.2"
|
|
G
|
|
|
|
start_time = Time.now
|
|
|
|
bundle "lock"
|
|
|
|
duration = Time.now - start_time
|
|
|
|
expect(duration.to_f).to be < 18 # seconds
|
|
end
|
|
end
|