summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_parser.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/psych/test_parser.rb b/test/psych/test_parser.rb
index 48fa9f2..3bbd280 100644
--- a/test/psych/test_parser.rb
+++ b/test/psych/test_parser.rb
@@ -2,13 +2,13 @@ require 'helper'
module Psych
class TestParser < Test::Unit::TestCase
- class EventCatcher < Parser::Handler
+ class EventCatcher < Handler
attr_reader :calls
def initialize
@calls = []
end
- (Parser::Handler.instance_methods(true) -
+ (Handler.instance_methods(true) -
Object.instance_methods).each do |m|
class_eval %{
def #{m} *args