17 lines
262 B
Python
17 lines
262 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from benedict.serializers import XMLSerializer
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class xml_serializer_test_case(unittest.TestCase):
|
||
|
|
||
|
def test_decode_xml(self):
|
||
|
# TODO
|
||
|
pass
|
||
|
|
||
|
def test_encode_xml(self):
|
||
|
# TODO
|
||
|
pass
|