DEBSOURCES
Skip Quicknav
sources / celery / 5.5.3-1 / t / unit / utils / test_objects.py
123456789
from celery.utils.objects import Bunch class test_Bunch: def test(self): x = Bunch(foo='foo', bar=2) assert x.foo == 'foo' assert x.bar == 2