File size: 209 Bytes
185f702
 
 
 
 
 
 
1
2
3
4
5
6
7
import pytest
from app.models import User

def test_user_model():
    user = User(name='John Doe', email='johndoe@example.com')
    assert user.name == 'John Doe'
    assert user.email == 'johndoe@example.com'