summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-05-28 21:04:23 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-05 07:32:42 +0900
commitff74725dc3fe5be418f230bf09409b1de6e74349 (patch)
tree28c4b72ddfa04477f5975b1f798aaf1af1dbcfd5
parent09602f4301ccf64d1b27e62d71f00569d1d78a72 (diff)
[rubygems/rubygems] Remove old no longer meaningful spec
This spec was originally written many years ago to verity gems were properly "remembered" in the lock file. At this point, the test feels a bit dummy since the first `bundle install` already runs on a "clean machine". https://github.com/rubygems/rubygems/commit/dbfefb3f5a
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3184
-rw-r--r--spec/bundler/install/gemfile/groups_spec.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/bundler/install/gemfile/groups_spec.rb b/spec/bundler/install/gemfile/groups_spec.rb
index 4ae4eb1862..27d9ffc279 100644
--- a/spec/bundler/install/gemfile/groups_spec.rb
+++ b/spec/bundler/install/gemfile/groups_spec.rb
@@ -126,16 +126,6 @@ RSpec.describe "bundle install with groups" do
expect(the_bundle).to include_gems "activesupport 2.3.2", :groups => [:default]
end
- it "still works on a different machine and excludes gems" do
- bundle :install, forgotten_command_line_options(:without => "emo")
-
- simulate_new_machine
- bundle :install, forgotten_command_line_options(:without => "emo")
-
- expect(the_bundle).to include_gems "rack 1.0.0", :groups => [:default]
- expect(the_bundle).not_to include_gems "activesupport 2.3.5", :groups => [:default]
- end
-
it "still works when BUNDLE_WITHOUT is set" do
ENV["BUNDLE_WITHOUT"] = "emo"