python-benedict/tests/dicts/keylist/test_keylist_dict.py

41 lines
588 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from benedict.dicts.keylist import KeylistDict
import unittest
class keylist_dict_test_case(unittest.TestCase):
def test_contains(self):
# TODO
pass
def test_delitem(self):
# TODO
pass
def test_get(self):
# TODO
pass
def test_getitem(self):
# TODO
pass
def test_pop(self):
# TODO
pass
def test_set(self):
# TODO
pass
def test_setdefault(self):
# TODO
pass
def test_setitem(self):
# TODO
pass