datatracker/ietf/idtracker/tests.py
Ole Laursen 7892e29036 Port idtracker feeds to new schema, move them to doc/, clean up
idtracker/ - only templatetags/ietf_filters and proxy code is left
 - Legacy-Id: 5643
2013-04-11 14:20:42 +00:00

11 lines
305 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
#
import doctest, unittest
from ietf.idtracker.templatetags import ietf_filters
class TemplateTagTest(unittest.TestCase):
def test_template_tags(self):
failures, tests = doctest.testmod(ietf_filters)
self.assertEqual(failures, 0)