def test_walk(self): ns = Namespace() ns.add('.all.work.no_play.dull_boy') ns.add('.hackers.on.planet.earth') test_dict = { ".": { "all": { "work": { "no_play": { "dull_boy": {} } } }, "hackers": { "on": { "planet": { "earth": {} } } } } } self.assertEqual(ns.walk(), test_dict)
def test_basic_walk(self): ns = Namespace() self.assertEqual({".": {}}, ns.walk())