mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
14 lines
409 B
Python
14 lines
409 B
Python
from aiohttp.test_utils import unittest_run_loop
|
|
from tests.cbpi_config_fixture import CraftBeerPiTestCase
|
|
|
|
|
|
class IndexTestCase(CraftBeerPiTestCase):
|
|
|
|
async def test_endpoints(self):
|
|
# Test Index Page
|
|
resp = await self.client.post(path="/system/restart")
|
|
assert resp.status == 200
|
|
|
|
resp = await self.client.post(path="/system/shutdown")
|
|
assert resp.status == 200
|
|
|