mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Set yamler as syck.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2e16e8a60e
commit
f2323dee14
1 changed files with 6 additions and 0 deletions
|
|
@ -4,9 +4,15 @@ require 'yaml'
|
||||||
module Syck
|
module Syck
|
||||||
class TestArray < Test::Unit::TestCase
|
class TestArray < Test::Unit::TestCase
|
||||||
def setup
|
def setup
|
||||||
|
@current_engine = YAML::ENGINE.yamler
|
||||||
|
YAML::ENGINE.yamler = 'syck'
|
||||||
@list = [{ :a => 'b' }, 'foo']
|
@list = [{ :a => 'b' }, 'foo']
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def teardown
|
||||||
|
YAML::ENGINE.yamler = @current_engine
|
||||||
|
end
|
||||||
|
|
||||||
def test_to_yaml
|
def test_to_yaml
|
||||||
assert_equal @list, YAML.load(@list.to_yaml)
|
assert_equal @list, YAML.load(@list.to_yaml)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue