17 lines
266 B
Python
17 lines
266 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from benedict.serializers import JSONSerializer
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class json_serializer_test_case(unittest.TestCase):
|
||
|
|
||
|
def test_decode_json(self):
|
||
|
# TODO
|
||
|
pass
|
||
|
|
||
|
def test_encode_json(self):
|
||
|
# TODO
|
||
|
pass
|