mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
28 lines
614 B
Python
28 lines
614 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.unit import TestCase
|
|
|
|
# Import Salt libs
|
|
from salt.renderers import yaml
|
|
|
|
yaml.__salt__ = {}
|
|
yaml.__opts__ = {}
|
|
|
|
|
|
class YAMLRendererTestCase(TestCase):
|
|
def test_yaml_render_string(self):
|
|
data = "string"
|
|
result = yaml.render(data)
|
|
|
|
self.assertEqual(result, data)
|
|
|
|
def test_yaml_render_unicode(self):
|
|
data = "!!python/unicode python unicode string"
|
|
result = yaml.render(data)
|
|
|
|
self.assertEqual(result, u"python unicode string")
|