(self, ly, shapes)
| 819 | self.assertEqual( c2.child_instances(), 0 ) |
| 820 | |
| 821 | def shapes_to_s(self, ly, shapes): |
| 822 | r = "" |
| 823 | for s in shapes.each(): |
| 824 | if r != "": |
| 825 | r += ";" |
| 826 | r += s.to_s() |
| 827 | return r |
| 828 | |
| 829 | # Copy/move between cells |
| 830 | def test_7_cells_copy_move(self): |
no test coverage detected