(self)
| 1476 | eq_(f2.get_children(), []) |
| 1477 | |
| 1478 | def test_copy_internals_no_method(self): |
| 1479 | class Foobar1(ClauseElement): |
| 1480 | pass |
| 1481 | |
| 1482 | class Foobar2(ColumnElement): |
| 1483 | pass |
| 1484 | |
| 1485 | f1 = Foobar1() |
| 1486 | f2 = Foobar2() |
| 1487 | |
| 1488 | f1._copy_internals() |
| 1489 | f2._copy_internals() |
| 1490 | |
| 1491 | def test_generative_cache_key_regen(self): |
| 1492 | t1 = table("t1", column("a"), column("b")) |
nothing calls this directly
no test coverage detected