
PostgreSQL setup:

    createuser -P unittestuser
    Enter password for new role: password
    Enter it again: password
 
    createdb -O unittestuser unittestdb

Requirements:

    pip install flask flask-sqlalchemy psycopg2

Run tests:

    python test_app.py


