2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestConfig < Gem::TestCase
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
def test_datadir
|
2012-11-29 01:52:18 -05:00
|
|
|
util_make_gems
|
|
|
|
spec = Gem::Specification.find_by_name("a")
|
|
|
|
spec.activate
|
|
|
|
assert_equal "#{spec.full_gem_path}/data/a", Gem.datadir('a')
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2015-09-08 18:46:43 -04:00
|
|
|
def test_good_rake_path_is_escaped
|
|
|
|
path = Gem::TestCase.class_eval('@@good_rake')
|
2015-09-08 21:05:47 -04:00
|
|
|
assert_match(/#{Gem.ruby} "[^"]*good_rake.rb"/, path)
|
2015-09-08 18:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_bad_rake_path_is_escaped
|
|
|
|
path = Gem::TestCase.class_eval('@@bad_rake')
|
2015-09-08 21:05:47 -04:00
|
|
|
assert_match(/#{Gem.ruby} "[^"]*bad_rake.rb"/, path)
|
2015-09-08 18:46:43 -04:00
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|