summaryrefslogtreecommitdiff
path: root/test/syck/test_class.rb
blob: 983cf4192c1f8aaae2f391382b115ec3849da90f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'test/unit'
require 'yaml'

module Syck
  class TestClass < Test::Unit::TestCase
    def setup
      @engine = YAML::ENGINE.yamler
      YAML::ENGINE.yamler = 'syck'
    end

    def teardown
      YAML::ENGINE.yamler = @engine
    end

    def test_to_yaml
      assert_raises(::TypeError) do
        TestClass.to_yaml
      end
    end

    def test_dump
      assert_raises(::TypeError) do
        YAML.dump TestClass
      end
    end
  end
end