예제 #1
0
 def test_nulldict(self):
     x = _nulldict()
     x['foo'] = 1
     x.update(foo=1, bar=2)
     x.setdefault('foo', 3)
예제 #2
0
파일: test_base.py 프로젝트: m4ddav3/celery
 def test_nulldict(self):
     x = _nulldict()
     x["foo"] = 1
     x.update(foo=1, bar=2)
     x.setdefault("foo", 3)