From b5d59da9f69c201620f576824074d6fb45e06278 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 10 Jun 2011 04:01:26 +0000 Subject: * test/ruby/test_module.rb (TestModule#remove_rake_mixins): remove all module related to Rake. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 3ecdf7ad7c..29503ed9a0 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -73,9 +73,10 @@ class TestModule < Test::Unit::TestCase end def remove_rake_mixins(list) - list. - reject {|c| c.to_s == "RakeFileUtils" }. - reject {|c| c.to_s.start_with?("FileUtils") } + list.reject {|c| + name = c.name + name.start_with?("Rake") or name.start_with?("FileUtils") + } end module Mixin -- cgit v1.2.3