diff options
author | John Barnette <jbarnette@gmail.com> | 2009-09-28 11:43:38 -0700 |
---|---|---|
committer | John Barnette <jbarnette@gmail.com> | 2009-09-28 11:43:38 -0700 |
commit | 2d31ee3a64a37a1cedb24303351d8023b9a87143 (patch) | |
tree | a0d208a89f3297c598c1330d6018f0518a1f1bd0 /test/visitors | |
parent | 0b3db166cd9e616fea231687d48582d53743ebe8 (diff) | |
download | psych-2d31ee3a64a37a1cedb24303351d8023b9a87143.zip |
Switch to MiniTest.
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_to_ruby.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/visitors/test_to_ruby.rb b/test/visitors/test_to_ruby.rb index aa98fbb..8cd29ac 100644 --- a/test/visitors/test_to_ruby.rb +++ b/test/visitors/test_to_ruby.rb @@ -1,8 +1,9 @@ -require 'helper' +require 'minitest/autorun' +require 'psych' module Psych module Visitors - class TestToRuby < Test::Unit::TestCase + class TestToRuby < MiniTest::Unit::TestCase def setup @visitor = ToRuby.new end |