(self)
| 79 | assert str(ErrorDetail('msg1', 'code')) == 'msg1' |
| 80 | |
| 81 | def test_hash(self): |
| 82 | assert hash(ErrorDetail('msg')) == hash('msg') |
| 83 | assert hash(ErrorDetail('msg', 'code')) == hash('msg') |
| 84 | |
| 85 | |
| 86 | class TranslationTests(TestCase): |
nothing calls this directly
no test coverage detected