summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-08-17 11:54:07 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-08-17 11:54:07 -0700
commit95fc90723bb041134c8fe3be8714e8599664ce8b (patch)
treeb4aa5370693ae8c689a38f1ea6700a17a3c555c5 /test
parentb4c0f7f54d9652e73e77a8703da5d031f70041ea (diff)
downloadpsych-95fc90723bb041134c8fe3be8714e8599664ce8b.zip
syncing with ruby trunk
Diffstat (limited to 'test')
-rw-r--r--test/psych/test_engine_manager.rb2
-rw-r--r--test/psych/test_yaml.rb7
2 files changed, 8 insertions, 1 deletions
diff --git a/test/psych/test_engine_manager.rb b/test/psych/test_engine_manager.rb
index d52a80e..b52fd09 100644
--- a/test/psych/test_engine_manager.rb
+++ b/test/psych/test_engine_manager.rb
@@ -21,7 +21,7 @@ module Psych
def test_set_syck
YAML::ENGINE.yamler = 'syck'
- assert_equal Syck, YAML
+ assert_equal ::Syck, YAML
assert_equal 'syck', YAML::ENGINE.yamler
end
diff --git a/test/psych/test_yaml.rb b/test/psych/test_yaml.rb
index 41bb377..807c058 100644
--- a/test/psych/test_yaml.rb
+++ b/test/psych/test_yaml.rb
@@ -3,6 +3,7 @@
# $Id$
#
require 'psych/helper'
+require 'ostruct'
# [ruby-core:01946]
module Psych_Tests
@@ -14,6 +15,12 @@ class Psych_Unit_Tests < Psych::TestCase
Psych.domain_types.clear
end
+ def test_y_method
+ assert_raises(NoMethodError) do
+ OpenStruct.new.y 1
+ end
+ end
+
def test_syck_compat
time = Time.utc(2010, 10, 10)
yaml = Psych.dump time