eventcally/tests/test___init__.py
Daniel Grams c658555afe Internal/tests (#29)
* Unit Tests
2020-12-04 14:54:47 +01:00

11 lines
254 B
Python

def test_mail_server():
import os
os.environ["DATABASE_URL"] = "postgresql://postgres@localhost/gsevpt_tests"
os.environ["MAIL_SERVER"] = "mailserver.com"
from project import app
app.config["TESTING"] = True
app.testing = True