aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_module.rb7
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2aaeefe3eb..261a276058 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jun 10 13:01:24 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * test/ruby/test_module.rb (TestModule#remove_rake_mixins): remove all
+ module related to Rake.
+
Fri Jun 10 09:52:38 2011 Eric Hodel <drbrain@segment7.net>
* encoding.c: Mention that Encoding.compatible? can work with more
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