19 lines
464 B
Python
19 lines
464 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
from tests.shared import getEmptyCol
|
|
|
|
|
|
def test_deferred_frontside():
|
|
col = getEmptyCol()
|
|
m = col.models.current()
|
|
m["tmpls"][0]["qfmt"] = "{{custom:Front}}"
|
|
col.models.save(m)
|
|
|
|
note = col.newNote()
|
|
note["Front"] = "xxtest"
|
|
note["Back"] = ""
|
|
col.addNote(note)
|
|
|
|
assert "xxtest" in note.cards()[0].a()
|