21 lines
514 B
Python
21 lines
514 B
Python
from pytest import fixture
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
from app.test.fixtures import app, db # noqa
|
|
from .model import Whatsit
|
|
|
|
|
|
@fixture
|
|
def whatsit() -> Whatsit:
|
|
return Whatsit(whatsit_id=1, name="Test whatsit", purpose="Test purpose")
|
|
|
|
|
|
def test_Whatsit_create(whatsit: Whatsit):
|
|
assert whatsit
|
|
|
|
|
|
def test_Whatsit_retrieve(whatsit: Whatsit, db: SQLAlchemy): # noqa
|
|
db.session.add(whatsit)
|
|
db.session.commit()
|
|
s = Whatsit.query.first()
|
|
assert s.__dict__ == whatsit.__dict__
|