Skip to content

Commit

Permalink
stop there w/ tests for this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
eroell committed Nov 2, 2024
1 parent 270f6bb commit 51d2172
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions tests/test_dt/test_dt.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ def test_mimic_iv_omop():
con.close()


def test_gibleed_omop():
con = duckdb.connect()
ed.dt.gibleed_omop(backend_handle=con)
assert len(con.execute("SHOW TABLES").df()) == 36
con.close()
# TODO
# def test_gibleed_omop():
# con = duckdb.connect()
# ed.dt.gibleed_omop(backend_handle=con)
# assert len(con.execute("SHOW TABLES").df()) == 36
# con.close()


def test_synthea27nj_omop():
con = duckdb.connect()
ed.dt.synthea27nj_omop(backend_handle=con)
assert len(con.execute("SHOW TABLES").df()) == 37
con.close()
# def test_synthea27nj_omop():
# con = duckdb.connect()
# ed.dt.synthea27nj_omop(backend_handle=con)
# assert len(con.execute("SHOW TABLES").df()) == 37
# con.close()

0 comments on commit 51d2172

Please sign in to comment.