MCPcopy
hub / github.com/marimo-team/marimo / test_multiple

Method test_multiple

tests/_ast/test_sql_visitor.py:504–512  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

502 assert find_sql_refs(sql) == {SQLRef(table="test_table")}
503
504 def test_multiple(self) -> None:
505 sql = """
506 SELECT * FROM table1;
507 SELECT * FROM table2;
508 """
509 assert find_sql_refs(sql) == {
510 SQLRef(table="table1"),
511 SQLRef(table="table2"),
512 }
513
514 def test_without_duplicates(self) -> None:
515 sql = """

Callers

nothing calls this directly

Calls 2

find_sql_refsFunction · 0.90
SQLRefClass · 0.90

Tested by

no test coverage detected