(self)
| 766 | ) |
| 767 | |
| 768 | def test_nondeletable(self): |
| 769 | A = self._fixture(False) |
| 770 | a1 = A(_value=5) |
| 771 | assert_raises_message( |
| 772 | AttributeError, "can't delete attribute", delattr, a1, "value" |
| 773 | ) |
| 774 | |
| 775 | def test_set_get(self): |
| 776 | A = self._fixture(True) |
nothing calls this directly
no test coverage detected