blob: 0b8c4db08bb17ca33568b47cd5f6b8057616216e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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
platform_is_not :windows do
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
if Gem.respond_to? :default_specifications_dir
default_specifications_dir = Gem.default_specifications_dir
else
default_specifications_dir = Gem::Specification.default_specifications_dir
end
skip "Could not find the default gemspecs" unless Dir.exist?(default_specifications_dir)
skip "default_specifications_dir mismatch with GEM_HOME" if ENV["GEM_HOME"] && !default_specifications_dir.start_with?(ENV['GEM_HOME'])
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
end
end
end
end
|