18 lines
455 B
Python
18 lines
455 B
Python
__author__ = "Florian Kaiser"
|
|
__copyright__ = "Copyright 2022, Project Aktienbot"
|
|
__credits__ = ["Florian Kaiser", "Florian Kellermann", "Linus Eickhof", "Kevin Pauer"]
|
|
__license__ = "GPL 3.0"
|
|
__version__ = "1.0.0"
|
|
|
|
"""
|
|
This file (test_helper_functions.py) contains the unit tests for the helper_functions.py file.
|
|
"""
|
|
from app.auth import *
|
|
|
|
|
|
def test_verify_token():
|
|
"""
|
|
Test verify_token function
|
|
"""
|
|
assert verify_token(None) is False
|