summaryrefslogtreecommitdiff
path: root/test/yaml/test_boolean.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-01-09 11:38:16 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-01-09 11:38:16 -0800
commit3c1be5322fbf775ac4e807e510f7bc50fcd5e305 (patch)
tree42d33728b09d407636b41475b20269a348b33bfe /test/yaml/test_boolean.rb
parent2b80fd137a850480d867b69d1219853d860cfe42 (diff)
downloadpsych-3c1be5322fbf775ac4e807e510f7bc50fcd5e305.zip
converting to minitest
Diffstat (limited to 'test/yaml/test_boolean.rb')
-rw-r--r--test/yaml/test_boolean.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/yaml/test_boolean.rb b/test/yaml/test_boolean.rb
index 8113348..5edeb87 100644
--- a/test/yaml/test_boolean.rb
+++ b/test/yaml/test_boolean.rb
@@ -4,7 +4,7 @@ module YAML
###
# Test booleans from YAML spec:
# http://yaml.org/type/bool.html
- class TestBoolean < Test::Unit::TestCase
+ class TestBoolean < MiniTest::Unit::TestCase
%w{ yes Yes YES true True TRUE on On ON }.each do |truth|
define_method(:"test_#{truth}") do
assert_equal true, YAML.load("--- #{truth}")