mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rubygems/test_config.rb: fix broken tests for Windows platform.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d0191f54f4
commit
2f227df3f9
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Sep 9 10:05:41 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/rubygems/test_config.rb: fix broken tests for Windows platform.
|
||||||
|
|
||||||
Wed Sep 9 07:46:32 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
Wed Sep 9 07:46:32 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||||
|
|
||||||
* lib/rubygems: Update to RubyGems HEAD(fe61e4c112).
|
* lib/rubygems: Update to RubyGems HEAD(fe61e4c112).
|
||||||
|
|
|
@ -12,13 +12,12 @@ class TestConfig < Gem::TestCase
|
||||||
|
|
||||||
def test_good_rake_path_is_escaped
|
def test_good_rake_path_is_escaped
|
||||||
path = Gem::TestCase.class_eval('@@good_rake')
|
path = Gem::TestCase.class_eval('@@good_rake')
|
||||||
assert_match(/ruby "[^"]*good_rake.rb"/, path)
|
assert_match(/#{Gem.ruby} "[^"]*good_rake.rb"/, path)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_bad_rake_path_is_escaped
|
def test_bad_rake_path_is_escaped
|
||||||
path = Gem::TestCase.class_eval('@@bad_rake')
|
path = Gem::TestCase.class_eval('@@bad_rake')
|
||||||
assert_match(/ruby "[^"]*bad_rake.rb"/, path)
|
assert_match(/#{Gem.ruby} "[^"]*bad_rake.rb"/, path)
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue