Files
RSSHub-python/tests/test_main.py
2019-01-16 22:45:05 +08:00

9 lines
234 B
Python

from flask import url_for
from tests.base import BaseTestCase
class MainTestCase(BaseTestCase):
def test_index(self):
response = self.client.get(url_for('main.index'))
self.assertEqual(response.status_code, 200)