mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-14 19:18:11 +01:00
17 lines
402 B
Python
17 lines
402 B
Python
|
from aiohttp.test_utils import AioHTTPTestCase, unittest_run_loop
|
||
|
|
||
|
from cbpi.craftbeerpi import CraftBeerPi, load_config
|
||
|
|
||
|
|
||
|
class UtilsTestCase(AioHTTPTestCase):
|
||
|
|
||
|
async def get_application(self):
|
||
|
self.cbpi = CraftBeerPi()
|
||
|
await self.cbpi.init_serivces()
|
||
|
return self.cbpi.app
|
||
|
|
||
|
@unittest_run_loop
|
||
|
async def test_load_file(self):
|
||
|
assert load_config("") is None
|
||
|
|