summaryrefslogtreecommitdiff
path: root/tests/test_ipaddress.py
Commit message (Collapse)AuthorAgeFilesLines
* Use relative imports throughout testsJon Dufresne2017-12-101-1/+1
| | | | | | | | | | | | | | The tests relied on Python2 relative import semantics. Python3 changed import semantics to always search sys.path by default. To import using a relative path it must have a leading dot. Forward compatible with newer Pythons. Works towards the goal of moving tests outside of the installed package. For more information, see PEP-328: https://www.python.org/dev/peps/pep-0328/
* Always import the system unittestJon Dufresne2017-12-011-1/+1
| | | | | | | There is no need to import testutils.unittest instead of simply unittest. They are simple aliases. Use system unittest to be more regular, consistent as well as idiomatic with the wider Python community.
* Skip tests with server not supporting NULL in arrayDaniele Varrazzo2017-02-061-3/+6
|
* Adding some boilerplate for the new moduleDaniele Varrazzo2017-01-011-1/+3
|
* Added ipaddress objects conversionDaniele Varrazzo2016-10-111-0/+131
Close #387