17 lines
266 B
Python
17 lines
266 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from benedict.serializers import YAMLSerializer
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class yaml_serializer_test_case(unittest.TestCase):
|
||
|
|
||
|
def test_decode_yaml(self):
|
||
|
# TODO
|
||
|
pass
|
||
|
|
||
|
def test_encode_yaml(self):
|
||
|
# TODO
|
||
|
pass
|