Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/forms_tests/widget_tests/base.py
blob: 3127cb85f2ad88b570ef1775c56086dda7f4fac3 (plain)
1
2
3
4
5
6
7
8
9
from django.test import SimpleTestCase


class WidgetTest(SimpleTestCase):
    beatles = (('J', 'John'), ('P', 'Paul'), ('G', 'George'), ('R', 'Ringo'))

    def check_html(self, widget, name, value, html='', attrs=None, **kwargs):
        output = widget.render(name, value, attrs=attrs, **kwargs)
        self.assertHTMLEqual(output, html)