aboutsummaryrefslogtreecommitdiff
path: root/src/tests/test_user.py
blob: f39279e3b0fc9d52d631612525da86fe9f16cecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import pytest, re

from bson.json_util import dumps

from lb_app.app_db.user import User

def test_get_all_users(app):
    with app.app_context():
        user = User(app)
        assert re.search('username', dumps(user.all()))

def test_register_user(app):
    with app.app_context():
        user = User(app)
        assert user.register("neodarz") is None

def test_register_and_remove_user(app):
    with app.app_context():
        user = User(app)
        assert user.register("neodarz") is None
        assert user.remove("neodarz") is None