(self, r_cxml, new_value, expected_r_cxml)
| 1169 | ), |
| 1170 | ) |
| 1171 | def it_can_change_its_text(self, r_cxml, new_value, expected_r_cxml): |
| 1172 | run = _Run(element(r_cxml), None) |
| 1173 | run.text = new_value |
| 1174 | assert run._r.xml == xml(expected_r_cxml) |
| 1175 | |
| 1176 | # fixtures --------------------------------------------- |
| 1177 |