mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
14 lines
198 B
Python
14 lines
198 B
Python
"""Sample Test File"""
|
|
|
|
import pytest
|
|
from sqlalchemy import Engine
|
|
|
|
|
|
def test_sample(session: Engine):
|
|
print(session)
|
|
assert session != None
|
|
|
|
|
|
def test_tables(session: Engine):
|
|
print()
|