1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/bundler/realworld/slow_perf_spec.rb
2021-03-08 13:47:35 +09:00

20 lines
412 B
Ruby

# frozen_string_literal: true
require "spec_helper"
RSpec.describe "bundle install with complex dependencies", :realworld => true do
it "resolves quickly" do
start_time = Time.now
install_gemfile <<-G
source 'https://rubygems.org'
gem "actionmailer"
gem "mongoid", ">= 0.10.2"
G
duration = Time.now - start_time
expect(duration.to_f).to be < 120 # seconds
end
end