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/test_psych.rb | |
parent | 0b3db166cd9e616fea231687d48582d53743ebe8 (diff) | |
download | psych-2d31ee3a64a37a1cedb24303351d8023b9a87143.zip |
Switch to MiniTest.
Diffstat (limited to 'test/test_psych.rb')
-rw-r--r-- | test/test_psych.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_psych.rb b/test/test_psych.rb index cc32740..865024f 100644 --- a/test/test_psych.rb +++ b/test/test_psych.rb @@ -1,6 +1,7 @@ -require 'helper' +require 'minitest/autorun' +require 'psych' -class TestPsych < Test::Unit::TestCase +class TestPsych < MiniTest::Unit::TestCase #def test_simple # assert_equal 'foo', Psych.parse("--- foo\n") #end |