def test_str2dict_separator(self): assert utils.str2dict('foo:bar', value=2, separator=':') == { 'foo': { 'bar': 2 } }
def test_str2dict_value(self): assert utils.str2dict('foo.bar', value=2) == {'foo': {'bar': 2}}
def test_str2dict(self): assert utils.str2dict('foo.bar') == {'foo': {'bar': {}}}
def test_str2dict_separator(self): assert utils.str2dict('foo:bar', value=2, separator=':') == { 'foo': {'bar': 2}}