(self)
| 185 | ) |
| 186 | |
| 187 | def test_add_short_description(self): |
| 188 | o1 = self.klass() |
| 189 | o2 = self.klass() |
| 190 | |
| 191 | o1.add_short_description("Test") |
| 192 | o2.short_descriptions.add("Test") |
| 193 | |
| 194 | self.assertEqual( |
| 195 | o1.short_descriptions.to_dict(), |
| 196 | o2.short_descriptions.to_dict() |
| 197 | ) |
| 198 | |
| 199 | @assert_warnings |
| 200 | def test_deprecated_related_packages(self): |
nothing calls this directly
no test coverage detected