2020-09-09 14:45:39 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from benedict.serializers import PListSerializer
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class plist_serializer_test_case(unittest.TestCase):
|
2022-02-13 10:35:43 +00:00
|
|
|
"""
|
|
|
|
This class describes a plist serializer test case.
|
|
|
|
"""
|
2020-09-09 14:45:39 +00:00
|
|
|
|
|
|
|
def test_decode_plist(self):
|
|
|
|
# TODO
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_encode_plist(self):
|
|
|
|
# TODO
|
|
|
|
pass
|