diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0249649 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +test: + python test_dj_database_url.py \ No newline at end of file diff --git a/test_dj_database_url.py b/test_dj_database_url.py new file mode 100644 index 0000000..5be4f73 --- /dev/null +++ b/test_dj_database_url.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +#!/usr/bin/env python + +import unittest + + +class DatabaseTestSuite(unittest.TestCase): + + def test_truth(self): + assert True + + +# unittest.TestCase +# postgres://uf07k1i6d8ia0v:wegauwhgeuioweg@ec2-107-21-253-135.compute-1.amazonaws.com:5431/d8r82722r2kuvn + + +if __name__ == '__main__': + unittest.main() \ No newline at end of file