2019-09-29 18:01:32 +02:00
|
|
|
require_relative '../../../spec_helper'
|
|
|
|
require 'rubygems'
|
|
|
|
|
|
|
|
describe "Gem.bin_path" do
|
|
|
|
before :each do
|
|
|
|
@bundle_gemfile = ENV['BUNDLE_GEMFILE']
|
|
|
|
ENV['BUNDLE_GEMFILE'] = tmp("no-gemfile")
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
ENV['BUNDLE_GEMFILE'] = @bundle_gemfile
|
|
|
|
end
|
|
|
|
|
2019-10-26 20:53:01 +02:00
|
|
|
platform_is_not :windows do
|
2019-09-29 19:56:15 +02:00
|
|
|
it "finds executables of default gems, which are the only files shipped for default gems" do
|
|
|
|
# For instance, Gem.bin_path("bundler", "bundle") is used by rails new
|
2019-09-29 18:01:32 +02:00
|
|
|
|
2019-09-29 19:56:15 +02:00
|
|
|
if Gem.respond_to? :default_specifications_dir
|
|
|
|
default_specifications_dir = Gem.default_specifications_dir
|
|
|
|
else
|
|
|
|
default_specifications_dir = Gem::Specification.default_specifications_dir
|
|
|
|
end
|
2019-09-29 18:01:32 +02:00
|
|
|
|
2019-09-29 19:56:15 +02:00
|
|
|
skip "Could not find the default gemspecs" unless Dir.exist?(default_specifications_dir)
|
2019-09-29 19:13:37 +02:00
|
|
|
|
2019-09-29 19:56:15 +02:00
|
|
|
Gem::Specification.each_spec([default_specifications_dir]) do |spec|
|
|
|
|
spec.executables.each do |exe|
|
|
|
|
path = Gem.bin_path(spec.name, exe)
|
|
|
|
File.should.exist?(path)
|
|
|
|
end
|
2019-09-29 18:01:32 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|