Mercurial > public > sg101
view messages/tests/test_forms.py @ 1188:cb712b2c34af
Add JSON option to dlcatreport management command.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 27 Dec 2021 17:30:26 -0600 |
parents | 82f1f6f905eb |
children |
line wrap: on
line source
"""Unit tests for the messages application forms.""" from django.contrib.auth.models import User from django.test import TestCase from messages.forms import ComposeForm class ComposeFormTestCase(TestCase): fixtures = ['messages_test_users.json'] def test_unsafe_image(self): data = { 'receiver': 'pj', 'subject': 'Test subject', 'message': 'Hi ![image](http:example.com/a.jpg)', } user = User.objects.get(username='eddie') f = ComposeForm(user, data) self.assertFalse(f.is_valid())