(self)
| 4 | |
| 5 | class TestSqliteVectorPython(unittest.TestCase): |
| 6 | def test_path(self): |
| 7 | self.assertEqual(type(sqlite_vss.vss_loadable_path()), str) |
| 8 | self.assertEqual(type(sqlite_vss.vector_loadable_path()), str) |
| 9 | |
| 10 | def test_loads(self): |
| 11 | db = sqlite3.connect(':memory:') |
nothing calls this directly
no test coverage detected