mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
8 lines
176 B
Python
8 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"
|