5876866565
hopefully that's the last of it
9 lines
176 B
Python
9 lines
176 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"
|