Initial setup for testing

This commit is contained in:
Aleksa V 2023-03-03 18:00:48 -05:00
parent 8b757ad1bd
commit 852e2c9356
4 changed files with 11 additions and 4 deletions

View File

@ -1,4 +0,0 @@
from selenium import webdriver
driver = webdriver.chrome()
driver.get("http://www.python.org")

8
tests/login_feature.py Normal file
View File

@ -0,0 +1,8 @@
import unittest
class LoginFeatureTests(unittest.TestCase):
def test_working(self):
self.assertTrue(True)
if __name__ == '__main__':
unittest.main(verbosity=2)

3
tests/test_module.py Normal file
View File

@ -0,0 +1,3 @@
import test
test.unittest.main()

0
tests.py → tests/tests.py Executable file → Normal file
View File