aboutsummaryrefslogtreecommitdiff
path: root/test/integration/tests.py
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-02 21:13:56 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-02 21:13:56 +0100
commitdb9177bb17b508ef4a6fa1d0707d3297fbd66c56 (patch)
tree57deb5c83d13beefe3eeaef9767a92cc9335c20b /test/integration/tests.py
parentd76fce80779f1fe3902d635ba6d9934927060712 (diff)
TAP-based test harness
Diffstat (limited to 'test/integration/tests.py')
-rwxr-xr-xtest/integration/tests.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/integration/tests.py b/test/integration/tests.py
deleted file mode 100755
index 123f100ff..000000000
--- a/test/integration/tests.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/python3
-
-import unittest
-from selenium import webdriver
-from selenium.webdriver.common.keys import Keys
-
-class PythonOrgSearch(unittest.TestCase):
-
- def setUp(self):
- self.driver = webdriver.Chrome()
-
- def test_taler_reachable(self):
- driver = self.driver
- driver.get("https://bank.demo.taler.net")
-
-
- def tearDown(self):
- self.driver.close()
-
-if __name__ == "__main__":
- unittest.main()