diff --git a/test/config.py b/test/config.py new file mode 100644 index 0000000..6147aa4 --- /dev/null +++ b/test/config.py @@ -0,0 +1,13 @@ +import unittest +import os +from dotenv import load_dotenv + +load_dotenv() + +class ConfigProject(unittest.TestCase): + def test_env_variables(self): + self.assertIsNotNone(os.getenv("DB_PASSWORD")) + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file