(self, secret_key_value)
| 10 | class SecretKeyTest(unittest.TestCase): |
| 11 | |
| 12 | def assertIsValidKeyValue(self, secret_key_value): # pylint: disable=invalid-name |
| 13 | self.assertIs(bytes, type(secret_key_value)) |
| 14 | self.assertEqual(32, len(secret_key_value)) |
| 15 | |
| 16 | def test_get_or_create_will_get_when_valid_file_exists(self): |
| 17 | with tempfile.NamedTemporaryFile() as mock_secret_key_file: |
no outgoing calls
no test coverage detected