evorepo/releng/tests.py

8 lines
195 B
Python
Raw Normal View History

2017-06-10 17:17:17 -07:00
from django.test import TestCase
class RelengTest(TestCase):
def test_feed(self):
response = self.client.get('/feeds/releases/')
self.assertEqual(response.status_code, 200)