11 lines
287 B
Python
11 lines
287 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from q3stats.testing import BaseQ3StatsWebAppTestCase
|
|
|
|
|
|
class Test_GetFrontendIndex(BaseQ3StatsWebAppTestCase):
|
|
def test_ok(self):
|
|
with self.app.test_request_context():
|
|
rsp = self.client.get('/')
|
|
assert rsp.status_code == 200
|