from django.test import TestCase from notes.forms import NoteForm class NoteFormTests(TestCase): def test_forms(self): form_data = { 'title': 'My Note', 'body_text': 'Body of the note', 'body_html': '
Body of the note
', 'body_qjson': '', 'notebook': '', 'url': '', 'tags': 'three word tag, tag' } form = NoteForm(data=form_data) self.assertTrue(form.is_valid())