10 lines
363 B
Python
10 lines
363 B
Python
from onionrutils import localcommand
|
|
def check_ui(test_manager):
|
|
endpoints = ['/', '/mail/', '/friends/', '/board/']
|
|
for point in endpoints:
|
|
result = localcommand.local_command(point)
|
|
if not result: raise ValueError
|
|
result = result.lower()
|
|
if not 'onionr' in result and not 'Onionr' in result:
|
|
raise ValueError
|