(self)
| 24 | class UtilityTestCase(unittest.TestCase): |
| 25 | |
| 26 | def test_object_dict(self): |
| 27 | obj = ObjectDict() |
| 28 | self.assertTrue(obj.xxx is None) |
| 29 | obj.xxx = 1 |
| 30 | self.assertEqual(1, obj.xxx) |
| 31 | |
| 32 | def test_check_signature_should_ok(self): |
| 33 | token = 'test' |