mirror of
https://github.com/stake-house/poap-reddit-bot.git
synced 2026-04-23 03:00:41 -04:00
7 lines
168 B
Python
7 lines
168 B
Python
import pytest
|
|
from poapbot.db.models import Attendee
|
|
from datetime import datetime
|
|
|
|
@pytest.fixture
|
|
def dummy_attendee():
|
|
return Attendee(username='dummy_username') |