Source code for 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


[docs]class ParseAutoLinksTestCase(TestCase): def _render_template(self, url): return render_to_string('kfm/extras/autolink.html', { 'url': url, }).strip()