Anki/pylib/tests/test_stats.py
Arthur Milchior 4c25835d27 f->note in test
Obtained by sed -i "s/\bf\b/note/g" pylib/tests/*py qt/tests/*py
2020-07-17 06:47:44 +02:00

37 lines
720 B
Python

#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import os
import tempfile
from tests.shared import getEmptyCol
def test_stats():
d = getEmptyCol()
note = d.newNote()
note["Front"] = "foo"
d.addNote(note)
c = note.cards()[0]
# card stats
assert d.cardStats(c)
d.reset()
c = d.sched.getCard()
d.sched.answerCard(c, 3)
d.sched.answerCard(c, 2)
assert d.cardStats(c)
def test_graphs_empty():
d = getEmptyCol()
assert d.stats().report()
def test_graphs():
dir = tempfile.gettempdir()
d = getEmptyCol()
g = d.stats()
rep = g.report()
with open(os.path.join(dir, "test.html"), "w", encoding="UTF-8") as note:
note.write(rep)
return