39:81920cb8753b
Anton Shestakov <av6@dwimlabs.net>, Sat, 18 Jun 2016 22:45:43 +0800
tests: create the in-memory database once in setup_module() Also mock the correct method, close() instead of disconnect().

next change 46:0f45e02848a1
previous change 35:d0d03f67dc1f

tests/test_models.py

Permissions: -rw-r--r--

Other formats: Feeds:
from datetime import datetime, timedelta
from candolint.models import Check
def test_duration():
now = datetime.now()
check = Check(started=now)
check.finished = now + timedelta(seconds=10)
assert check.get_duration() == '10 sec'
check.finished = now + timedelta(minutes=5)
assert check.get_duration() == '5 min'
check.finished = now + timedelta(hours=2)
assert check.get_duration() == '120 min'