mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
443 B
Python
17 lines
443 B
Python
# need to get this dir in the path so that we make the import work
|
|
import os
|
|
import sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'shared'))
|
|
|
|
from frontend_tester import BaseTestFrontendUnits
|
|
|
|
|
|
class TestDesktopUnits(BaseTestFrontendUnits):
|
|
|
|
def setUp(self):
|
|
super(TestDesktopUnits, self).setUp()
|
|
self.set_server_prefix("../standalone/")
|
|
|
|
def test_units(self):
|
|
self.check_page("index.html")
|