kenken999's picture
sd
185f702
raw
history blame
209 Bytes
import pytest
from app.models import User
def test_user_model():
user = User(name='John Doe', email='[email protected]')
assert user.name == 'John Doe'
assert user.email == '[email protected]'