1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* remove trailing spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
svn 2017-01-24 02:38:58 +00:00
parent 5d43821536
commit e22aa95141

View file

@ -53,7 +53,7 @@ class TestGemExtRakeBuilder < Gem::TestCase
assert_match %r%^#{Regexp.escape @@ruby} mkrf_conf\.rb%, output
assert_match %r%^#{Regexp.escape rake} RUBYARCHDIR=#{Regexp.escape @dest_path} RUBYLIBDIR=#{Regexp.escape @dest_path}%, output
end
end
end
def test_class_build_fail
create_temp_mkrf_file("task :default do abort 'fail' end")
@ -69,7 +69,7 @@ class TestGemExtRakeBuilder < Gem::TestCase
assert_match %r%^rake failed%, error.message
end
end
def create_temp_mkrf_file(rakefile_content)
File.open File.join(@ext, 'mkrf_conf.rb'), 'w' do |mkrf_conf|
mkrf_conf.puts <<-EO_MKRF