mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-05-03 13:04:51 +00:00
18 lines
No EOL
333 B
Python
18 lines
No EOL
333 B
Python
# -*- 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() |