mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-05-11 08:43:14 +00:00
tests
This commit is contained in:
parent
df9319ac93
commit
73f3209707
2 changed files with 20 additions and 0 deletions
2
Makefile
Normal file
2
Makefile
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
test:
|
||||
python test_dj_database_url.py
|
||||
18
test_dj_database_url.py
Normal file
18
test_dj_database_url.py
Normal 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()
|
||||
Loading…
Reference in a new issue