Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/staticfiles_tests/test_templatetags.py
blob: 7971ee1e516201f873ebc7b08435d4e418320527 (plain)
1
2
3
4
5
6
7
8
9
10
from __future__ import unicode_literals

from .cases import StaticFilesTestCase


class TestTemplateTag(StaticFilesTestCase):

    def test_template_tag(self):
        self.assertStaticRenders("does/not/exist.png", "/static/does/not/exist.png")
        self.assertStaticRenders("testfile.txt", "/static/testfile.txt")