test #8710
(self)
| 318 | return res |
| 319 | |
| 320 | def test_close_attributes(self): |
| 321 | """test #8710""" |
| 322 | r1 = self._fixture() |
| 323 | |
| 324 | is_false(r1.closed) |
| 325 | is_false(r1._soft_closed) |
| 326 | |
| 327 | r1._soft_close() |
| 328 | is_false(r1.closed) |
| 329 | is_true(r1._soft_closed) |
| 330 | |
| 331 | r1.close() |
| 332 | is_true(r1.closed) |
| 333 | is_true(r1._soft_closed) |
| 334 | |
| 335 | def test_class_presented(self): |
| 336 | """To support different kinds of objects returned vs. rows, |
nothing calls this directly
no test coverage detected