(self)
| 1463 | eq_(s1._generate_cache_key(), None) |
| 1464 | |
| 1465 | def test_get_children_no_method(self): |
| 1466 | class Foobar1(ClauseElement): |
| 1467 | pass |
| 1468 | |
| 1469 | class Foobar2(ColumnElement): |
| 1470 | pass |
| 1471 | |
| 1472 | f1 = Foobar1() |
| 1473 | eq_(f1.get_children(), []) |
| 1474 | |
| 1475 | f2 = Foobar2() |
| 1476 | eq_(f2.get_children(), []) |
| 1477 | |
| 1478 | def test_copy_internals_no_method(self): |
| 1479 | class Foobar1(ClauseElement): |
nothing calls this directly
no test coverage detected