MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_issue_9418

Function test_issue_9418

test/typing/plain_files/sql/sql_operations.py:77–86  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

75
76
77def test_issue_9418() -> None:
78 and_(c1.is_(q))
79 and_(c1.is_not(q))
80 and_(c1.isnot(q))
81 and_(c1.not_in(["x"]))
82 and_(c1.notin_(["x"]))
83 and_(c1.not_like("x"))
84 and_(c1.notlike("x"))
85 and_(c1.not_ilike("x"))
86 and_(c1.notilike("x"))
87
88
89def test_issue_9451() -> None:

Callers

nothing calls this directly

Calls 10

and_Function · 0.90
is_Method · 0.45
is_notMethod · 0.45
isnotMethod · 0.45
not_inMethod · 0.45
notin_Method · 0.45
not_likeMethod · 0.45
notlikeMethod · 0.45
not_ilikeMethod · 0.45
notilikeMethod · 0.45

Tested by

no test coverage detected