(db: Session)
| 10 | |
| 11 | @pytest.fixture |
| 12 | def test_user(db: Session) -> dict[str, Any]: |
| 13 | email = random_email() |
| 14 | password = random_lower_string() |
| 15 | full_name = random_lower_string() |
| 16 | |
| 17 | user_in = UserCreate(email=email, password=password, full_name=full_name) |
| 18 | user = create_user(session=db, user_create=user_in) |
| 19 | |
| 20 | return user |
nothing calls this directly
no test coverage detected