(self)
| 9 | |
| 10 | class TestUserFileStorage(unittest.TestCase): |
| 11 | def setUp(self): |
| 12 | test_utils.setup() |
| 13 | self.storage = UserFileStorage(b'12345678') |
| 14 | |
| 15 | def tearDown(self): |
| 16 | test_utils.cleanup() |
nothing calls this directly
no test coverage detected