(self)
| 421 | self._test_partial_dict(d) |
| 422 | |
| 423 | def test_add_description(self): |
| 424 | o1 = self.klass() |
| 425 | o2 = self.klass() |
| 426 | |
| 427 | o1.add_description("Test") |
| 428 | o2.descriptions.add("Test") |
| 429 | |
| 430 | self.assertEqual( |
| 431 | o1.descriptions.to_dict(), |
| 432 | o2.descriptions.to_dict() |
| 433 | ) |
| 434 | |
| 435 | def test_add_short_description(self): |
| 436 | o1 = self.klass() |
nothing calls this directly
no test coverage detected