mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
7 lines
175 B
Python
7 lines
175 B
Python
# coding: utf-8
|
|
|
|
from anki.utils import fmtTimeSpan
|
|
|
|
def test_fmtTimeSpan():
|
|
assert fmtTimeSpan(5) == "5 seconds"
|
|
assert fmtTimeSpan(5, inTime=True) == "in 5 seconds"
|