def test_create_table(self, con, not_a_table): pd = pytest.importorskip("pandas") df = pd.DataFrame({"A": [1, 2], "B": [1., 2.]}) con.create_table(not_a_table, df)