anki/tests/test_stats.py

32 lines
675 B
Python
Raw Normal View History

# coding: utf-8
2012-12-22 01:17:10 +01:00
import os
2014-06-03 10:38:47 +02:00
from tests.shared import getEmptyCol
def test_stats():
2014-06-03 10:38:47 +02:00
d = getEmptyCol()
f = d.newNote()
f['Front'] = "foo"
d.addNote(f)
c = f.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():
2014-06-03 10:38:47 +02:00
d = getEmptyCol()
assert d.stats().report()
def test_graphs():
from anki import Collection as aopen
d = aopen(os.path.expanduser("~/test.anki2"))
g = d.stats()
rep = g.report()
with open(os.path.expanduser("~/test.html"), "w") as f:
f.write(rep)
return