MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / test_in_22

Method test_in_22

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

Source from the content-addressed store, hash-verified

2264 )
2265
2266 def test_in_22(self):
2267 self.assert_compile(
2268 self.table1.c.myid.in_(
2269 text("SELECT myothertable.otherid FROM myothertable")
2270 ),
2271 "mytable.myid IN (SELECT myothertable.otherid "
2272 "FROM myothertable)",
2273 )
2274
2275 def test_in_24(self):
2276 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