2010-11-08 04:42:13 +00:00

13 lines
326 B
Python

from unittest import TestCase
from django import template
class CustomTests(TestCase):
def test_filter(self):
t = template.Template("{% load custom %}{{ string|trim:5 }}")
self.assertEqual(
t.render(template.Context({"string": "abcdefghijklmnopqrstuvwxyz"})),
u"abcde"
)