summaryrefslogtreecommitdiff
path: root/test/syck/test_array.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/syck/test_array.rb')
-rw-r--r--test/syck/test_array.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/syck/test_array.rb b/test/syck/test_array.rb
deleted file mode 100644
index 59c9f469ce..0000000000
--- a/test/syck/test_array.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'test/unit'
-require 'yaml'
-
-module Syck
- class TestArray < Test::Unit::TestCase
- def setup
- @current_engine = YAML::ENGINE.yamler
- YAML::ENGINE.yamler = 'syck'
- @list = [{ :a => 'b' }, 'foo']
- end
-
- def teardown
- YAML::ENGINE.yamler = @current_engine
- end
-
- def test_to_yaml
- assert_equal @list, YAML.load(@list.to_yaml)
- end
-
- def test_dump
- assert_equal @list, YAML.load(YAML.dump(@list))
- end
- end
-end