|
import unittest
|
|
|
|
# from benedict.serializers import TOMLSerializer
|
|
|
|
|
|
class toml_serializer_test_case(unittest.TestCase):
|
|
"""
|
|
This class describes a toml serializer test case.
|
|
"""
|
|
|
|
def test_decode_toml(self):
|
|
# TODO
|
|
pass
|
|
|
|
def test_encode_toml(self):
|
|
# TODO
|
|
pass
|