TelegramAktienBot/api/tests/unit/test_auth.py
H4CK3R-01 21d2bc334c Tests
- Improved directory structure
- Added functional and unit tests
2022-03-30 10:46:54 +02:00

15 lines
267 B
Python

"""
This file (test_helper_functions.py) contains the unit tests for the helper_functions.py file.
"""
import datetime
import jwt
from app.auth import *
def test_verify_token():
"""
Test verify_token function
"""
assert verify_token(None) is False