17 lines
262 B
Python
17 lines
262 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from benedict.serializers import CSVSerializer
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class csv_serializer_test_case(unittest.TestCase):
|
||
|
|
||
|
def test_decode_csv(self):
|
||
|
# TODO
|
||
|
pass
|
||
|
|
||
|
def test_encode_csv(self):
|
||
|
# TODO
|
||
|
pass
|