mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 19:44:01 +02:00
* 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
This commit is contained in:
parent
58b14e7892
commit
b5d59da9f6
2 changed files with 9 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue