This commit is contained in:
Kenneth Reitz 2012-06-19 11:03:52 -04:00
parent df9319ac93
commit 73f3209707
2 changed files with 20 additions and 0 deletions

2
Makefile Normal file
View file

@ -0,0 +1,2 @@
test:
python test_dj_database_url.py

18
test_dj_database_url.py Normal file
View file

@ -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()