1
0
Fork 0
mirror of https://git.joinplu.me/Plume/Plume.git synced 2025-03-16 20:12:41 +00:00
Plume/script/browser_test/instance.py
fdb-hiroshima eabe73ddc0
Add tests for plume webserver ()
* begin setup front-end test environment with selenium
* run migrations before tests
* use https for tests
2019-04-06 17:41:57 +02:00

7 lines
186 B
Python

#!/usr/bin/python3
from utils import Browser
class InstanceName(Browser):
def test_name_in_title(self):
self.get("/")
self.assertIn("plume-test", self.driver.title)