diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-10-08 15:24:56 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-10-08 15:24:56 -0700 |
commit | be5a4cb845025170c0a8b843faa478989e499f51 (patch) | |
tree | 19f7808d8269230df5a2108abe44de6badfc1557 /test/test_psych.rb | |
parent | 57c468a5f8bd3ffc1cb93b07db6b823872316a18 (diff) | |
download | psych-be5a4cb845025170c0a8b843faa478989e499f51.zip |
supporting load documents
Diffstat (limited to 'test/test_psych.rb')
-rw-r--r-- | test/test_psych.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_psych.rb b/test/test_psych.rb index 96d0f69..690bf23 100644 --- a/test/test_psych.rb +++ b/test/test_psych.rb @@ -10,4 +10,12 @@ class TestPsych < MiniTest::Unit::TestCase assert Psych.libyaml_version assert_equal Psych.libyaml_version.join('.'), Psych::LIBYAML_VERSION end + + def test_load_documents + docs = [] + Psych.load_documents("--- foo\n...\n--- bar\n...") { |doc| + docs << doc + } + assert_equal %w{ foo bar }, docs + end end |