(self)
| 54 | self.assertEqual(obj1.short_description.value, obj2.short_description.value) |
| 55 | |
| 56 | def test_structured_text(self): |
| 57 | s = StructuredText(UNICODE_STR) |
| 58 | s2 = round_trip(s) |
| 59 | self.assertEqual(s.value, s2.value) |
| 60 | |
| 61 | def test_asset_type(self): |
| 62 | a = affected_asset.AssetType() |
nothing calls this directly
no test coverage detected