1
0
Fork 0
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:
hsbt 2015-09-09 01:05:47 +00:00
parent d0191f54f4
commit 2f227df3f9
2 changed files with 6 additions and 3 deletions

View file

@ -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>
* lib/rubygems: Update to RubyGems HEAD(fe61e4c112).

View file

@ -12,13 +12,12 @@ class TestConfig < Gem::TestCase
def test_good_rake_path_is_escaped
path = Gem::TestCase.class_eval('@@good_rake')
assert_match(/ruby "[^"]*good_rake.rb"/, path)
assert_match(/#{Gem.ruby} "[^"]*good_rake.rb"/, path)
end
def test_bad_rake_path_is_escaped
path = Gem::TestCase.class_eval('@@bad_rake')
assert_match(/ruby "[^"]*bad_rake.rb"/, path)
assert_match(/#{Gem.ruby} "[^"]*bad_rake.rb"/, path)
end
end