mirror of
https://github.com/simple-login/app.git
synced 2024-11-03 12:21:02 +01:00
20 lines
433 B
Python
20 lines
433 B
Python
import arrow
|
|
|
|
from app.models import User, CoinbaseSubscription
|
|
from cron import notify_manual_sub_end
|
|
|
|
|
|
def test_notify_manual_sub_end(flask_client):
|
|
user = User.create(
|
|
email="a@b.c",
|
|
password="password",
|
|
name="Test User",
|
|
activated=True,
|
|
)
|
|
|
|
CoinbaseSubscription.create(
|
|
user_id=user.id, end_at=arrow.now().shift(days=13, hours=2), commit=True
|
|
)
|
|
|
|
notify_manual_sub_end()
|