summaryrefslogtreecommitdiffstats
path: root/planet/tests/test_views.py
blob: b09c9e6b802b98901b458507913ee4a0062e2824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from django.test import TestCase


class PlanetTest(TestCase):

    def test_feed(self):
        response = self.client.get('/feeds/planet/')
        self.assertEqual(response.status_code, 200)

    def test_planet(self):
        response = self.client.get('/planet/')
        self.assertEqual(response.status_code, 200)