7 lines
No EOL
196 B
Python
7 lines
No EOL
196 B
Python
|
|
def test_import_cognee():
|
|
try:
|
|
import cognee
|
|
assert True # Pass the test if no error occurs
|
|
except ImportError as e:
|
|
assert False, f"Failed to import cognee: {e}" |