summaryrefslogtreecommitdiff
path: root/test/syck/test_array.rb
blob: 7ffa1b404ffe069f1a54dbc439eeeaa7dd12fe7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'test/unit'
require 'yaml'

module Syck
  class TestArray < Test::Unit::TestCase
    def setup
      @list = [{ :a => 'b' }, 'foo']
    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