18 lines
352 B
Python
18 lines
352 B
Python
import unittest
|
|
|
|
# from benedict.serializers import QueryStringSerializer
|
|
|
|
|
|
class query_string_serializer_test_case(unittest.TestCase):
|
|
"""
|
|
This class describes a query-string serializer test case.
|
|
"""
|
|
|
|
def test_decode_query_string(self):
|
|
# TODO
|
|
pass
|
|
|
|
def test_encode_query_string(self):
|
|
# TODO
|
|
pass
|