MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_get_children_no_method

Method test_get_children_no_method

test/sql/test_compare.py:1465–1476  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 4

eq_Function · 0.90
Foobar1Class · 0.85
Foobar2Class · 0.85
get_childrenMethod · 0.45

Tested by

no test coverage detected