Method
it_can_change_its_text
(self, text_frame_prop_, text_frame_)
Source from the content-addressed store, hash-verified
| 327 | assert text == "foobar" |
| 328 | |
| 329 | def it_can_change_its_text(self, text_frame_prop_, text_frame_): |
| 330 | text_frame_prop_.return_value = text_frame_ |
| 331 | cell = _Cell(None, None) |
| 332 | |
| 333 | cell.text = "føøbår" |
| 334 | |
| 335 | assert text_frame_.text == "føøbår" |
| 336 | |
| 337 | def it_knows_its_vertical_anchor_setting(self, anchor_get_fixture): |
| 338 | cell, expected_value = anchor_get_fixture |
Callers
nothing calls this directly
Tested by
no test coverage detected