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