summaryrefslogtreecommitdiff
path: root/spec/bundler/commands/list_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-05-06 18:06:21 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 09:29:55 +0900
commitc3ddd47ce7b546530e2241b0ea6a96817977886a (patch)
tree46515c479773d7add25773b536009e096ee9fa78 /spec/bundler/commands/list_spec.rb
parentd8d5e16305ee071f7cf16980788cabcc44799c2e (diff)
[bundler/bundler] Normalize file:// handling in specs
https://github.com/bundler/bundler/commit/5946d62ad0
Diffstat (limited to 'spec/bundler/commands/list_spec.rb')
-rw-r--r--spec/bundler/commands/list_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/bundler/commands/list_spec.rb b/spec/bundler/commands/list_spec.rb
index 346b47517e..71d2136d38 100644
--- a/spec/bundler/commands/list_spec.rb
+++ b/spec/bundler/commands/list_spec.rb
@@ -20,7 +20,7 @@ RSpec.describe "bundle list" do
describe "with without-group option" do
before do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
gem "rspec", :group => [:test]
@@ -48,7 +48,7 @@ RSpec.describe "bundle list" do
describe "with only-group option" do
before do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
gem "rspec", :group => [:test]
@@ -76,7 +76,7 @@ RSpec.describe "bundle list" do
context "with name-only option" do
before do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
gem "rspec", :group => [:test]
@@ -104,7 +104,7 @@ RSpec.describe "bundle list" do
end
install_gemfile <<-G
- source "file://#{gem_repo2}"
+ source "#{file_uri_for(gem_repo2)}"
gem "rack"
gem "rails"
gem "git_test", :git => "#{lib_path("git_test")}"
@@ -124,7 +124,7 @@ RSpec.describe "bundle list" do
context "when no gems are in the gemfile" do
before do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
G
end
@@ -137,7 +137,7 @@ RSpec.describe "bundle list" do
context "without options" do
before do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
gem "rspec", :group => [:test]
@@ -153,7 +153,7 @@ RSpec.describe "bundle list" do
context "when using the ls alias" do
before do
install_gemfile <<-G
- source "file://#{gem_repo1}"
+ source "#{file_uri_for(gem_repo1)}"
gem "rack"
gem "rspec", :group => [:test]