summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-10-09 14:59:23 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-10-09 20:37:27 +0900
commit89a4b684d9f4d2c4f4f2a6be7d98fa0b97d3dd28 (patch)
tree9566ada2a19fd11d3790f3b80d0c4d9984d71e05
parent8a213f74e3eb2ac51e33cf02e5e11eafb0cf005a (diff)
[rubygems/rubygems] Removed obsoleted example
https://github.com/rubygems/rubygems/commit/b9960f2c6a Co-authored-by: David Rodríguez <2887858+deivid-rodriguez@users.noreply.github.com>
-rw-r--r--spec/bundler/install/gemfile/path_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/bundler/install/gemfile/path_spec.rb b/spec/bundler/install/gemfile/path_spec.rb
index ea59f11bbe..31d79ed41c 100644
--- a/spec/bundler/install/gemfile/path_spec.rb
+++ b/spec/bundler/install/gemfile/path_spec.rb
@@ -1,17 +1,6 @@
# frozen_string_literal: true
RSpec.describe "bundle install with explicit source paths" do
- it "fetches gems with a global path source" do
- build_lib "foo"
-
- install_gemfile <<-G
- path "#{lib_path("foo-1.0")}"
- gem 'foo'
- G
-
- expect(the_bundle).to include_gems("foo 1.0")
- end
-
it "fetches gems" do
build_lib "foo"