12 lines
239 B
Python
12 lines
239 B
Python
"""
|
|
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
|