Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/messages_tests/test_mixins.py
blob: f59de5abd94712201d1dcd9742bb741e6e10ab29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from django.core.urlresolvers import reverse
from django.test import SimpleTestCase, override_settings

from .urls import ContactFormViewWithMsg


@override_settings(ROOT_URLCONF='messages_tests.urls')
class SuccessMessageMixinTests(SimpleTestCase):

    def test_set_messages_success(self):
        author = {'name': 'John Doe',
                  'slug': 'success-msg'}
        add_url = reverse('add_success_msg')
        req = self.client.post(add_url, author)
        self.assertIn(ContactFormViewWithMsg.success_message % author,
                      req.cookies['messages'].value)