about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-01-31 09:10:16 +0000
committerEric Wong <normalperson@yhbt.net>2011-01-31 09:10:16 +0000
commitf6c7de7a8a62b25c2b23fddbe787d4c880158d3d (patch)
tree026a755c5387d6162de9401249f5bb666e0638b8
parentc122d7cc3e342d17014d8571634e55477286d928 (diff)
downloadmahoro-f6c7de7a8a62b25c2b23fddbe787d4c880158d3d.tar.gz
test: do not use initialize in testcase
we have a default "setup" method nowadays
-rwxr-xr-xtest.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test.rb b/test.rb
index 049438b..b7bcb69 100755
--- a/test.rb
+++ b/test.rb
@@ -5,8 +5,7 @@ require 'mahoro'
 
 class MahoroTestCase < Test::Unit::TestCase
 
-        def initialize(*args)
-                super
+        def setup
                 @m = Mahoro.new
         end