예제 #1
0
파일: tests.py 프로젝트: zekroTJA/giphypop
 def test_set_attribute_proxies_key(self):
     foo = AttrDict()
     foo.bar = 'baz'
     assert foo['bar'] == 'baz'
예제 #2
0
파일: tests.py 프로젝트: zekroTJA/giphypop
 def test_set_attribute(self):
     foo = AttrDict()
     foo.bar = 'baz'
     assert foo.bar == 'baz'