20 lines
375 B
Python
20 lines
375 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from benedict.serializers import QueryStringSerializer
|
|
|
|
import unittest
|
|
|
|
|
|
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
|