Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fun-apps / contact / tests.py
Size: Mime:
# -*- coding: utf-8 -*-

from django.core.urlresolvers import reverse
from django.test import TestCase

from fun.tests.utils import skipUnlessLms


@skipUnlessLms
class ContactTest(TestCase):

    def test_contact_view(self):
        url = reverse('contact:contact')
        response = self.client.get(url)
        self.assertEqual(200, response.status_code)