(self)
| 56 | self.assertTrue(config.BOOL_VALUE) |
| 57 | |
| 58 | async def test_int_proxy(self): |
| 59 | await config.aset("INT_VALUE", 1) |
| 60 | self.assertEqual(int(config.INT_VALUE), 1) |
| 61 | |
| 62 | async def test_container_proxy(self): |
| 63 | # LIST_VALUE is [1, "1", date(2019, 1, 1)] by default |