diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-15 12:22:50 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-15 12:22:50 +0000 |
commit | 8fc45476ebf80e8da9c50ff441e623c1550799e6 (patch) | |
tree | 71d6b3da1f56eb31ee807f7b36abaea54247c017 /lib/test | |
parent | 1f125adde0e6cad77b13c521cb95c7089885b398 (diff) | |
download | ruby-8fc45476ebf80e8da9c50ff441e623c1550799e6.tar.gz |
* lib/test/unit/assertions.rb (Test::Unit::Assertions): aliases
assert_not_ methods.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test')
-rw-r--r-- | lib/test/unit/assertions.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/test/unit/assertions.rb b/lib/test/unit/assertions.rb index 2e9fadfe57..de357d0fea 100644 --- a/lib/test/unit/assertions.rb +++ b/lib/test/unit/assertions.rb @@ -122,6 +122,10 @@ EOT super if !caller[0].rindex(MiniTest::MINI_DIR, 0) || !obj.respond_to?(meth) end + instance_methods(true).grep(/\Arefute_/) do |m| + alias_method(('assert_not_' << m.to_s[/.*?_(.*)/, 1]), m) + end + def build_message(head, template=nil, *arguments) template &&= template.chomp template.gsub(/\?/) { mu_pp(arguments.shift) } |