41 lines
588 B
Python
41 lines
588 B
Python
![]() |
# -*- 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
|