コード例 #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)