test_objects.py 172 B

123456789
  1. from celery.utils.objects import Bunch
  2. class test_Bunch:
  3. def test(self):
  4. x = Bunch(foo='foo', bar=2)
  5. assert x.foo == 'foo'
  6. assert x.bar == 2