diff --git a/selenium.py b/selenium.py
deleted file mode 100644
index a363491..0000000
--- a/selenium.py
+++ /dev/null
@@ -1,4 +0,0 @@
-from selenium import webdriver
-
-driver = webdriver.chrome()
-driver.get("http://www.python.org")
diff --git a/tests/login_feature.py b/tests/login_feature.py
new file mode 100644
index 0000000..ea7866b
--- /dev/null
+++ b/tests/login_feature.py
@@ -0,0 +1,8 @@
+import unittest
+
+class LoginFeatureTests(unittest.TestCase):
+        def test_working(self):
+                self.assertTrue(True)
+
+if __name__ == '__main__':
+    unittest.main(verbosity=2)
\ No newline at end of file
diff --git a/tests/test_module.py b/tests/test_module.py
new file mode 100644
index 0000000..ffb12ab
--- /dev/null
+++ b/tests/test_module.py
@@ -0,0 +1,3 @@
+import test
+
+test.unittest.main()
\ No newline at end of file
diff --git a/tests.py b/tests/tests.py
old mode 100755
new mode 100644
similarity index 100%
rename from tests.py
rename to tests/tests.py