Testing

Other topics

Simple Test

from django.test import TestCase
from myapp.forms import MyForm

class MyAppTests(TestCase):
    def test_forms(self):
        form_data = {'field1': 'fieldvalue1'}
        form = MyForm(data=form_data)
        self.assertTrue(form.is_valid())

Contributors

Topic Id: 8928

Example Ids: 27778

This site is not affiliated with any of the contributors.