mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 20:09:17 +02:00
10 lines
254 B
Python
10 lines
254 B
Python
from oauth2_provider import models
|
|
from funkwhale_api.users.oauth import tasks
|
|
|
|
|
|
def test_clear_expired_tokens(mocker, db):
|
|
clear_expired = mocker.spy(models, "clear_expired")
|
|
|
|
tasks.clear_expired_tokens()
|
|
|
|
clear_expired.assert_called_once()
|