MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_in_22

Method test_in_22

test/sql/test_operators.py:2433–2439  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2431 )
2432
2433 def test_in_22(self):
2434 self.assert_compile(
2435 self.table1.c.myid.in_(
2436 text("SELECT myothertable.otherid FROM myothertable")
2437 ),
2438 "mytable.myid IN (SELECT myothertable.otherid FROM myothertable)",
2439 )
2440
2441 def test_in_24(self):
2442 self.assert_compile(

Callers

nothing calls this directly

Calls 3

textFunction · 0.90
assert_compileMethod · 0.80
in_Method · 0.45

Tested by

no test coverage detected