Source code for eggplant.dashboard.tests

# -*- coding: utf-8 -*-
from django.core.urlresolvers import reverse
from django.test import TestCase


[docs]class TestDashboard(TestCase):
[docs] def test_home(self): response = self.client.get(reverse('eggplant:dashboard:home')) self.assertEqual(response.status_code, 302)