kawaz.apps.kfm.tests.test_extras.test_autolink のソースコード

from django.test import TestCase
from django.template.loader import render_to_string
from ...extras.autolink import parse_autolinks


[ドキュメント]class ParseAutoLinksTestCase(TestCase): def _render_template(self, url): return render_to_string('kfm/extras/autolink.html', { 'url': url, }).strip()