Testing

Tests are located in tests dir.

Commands

To run tests:

$ python -m unittest discover -s tests -v

To generate code coverage:

$ coverage run -m unittest discover -s tests -v
$ coverage html

Open htmlcov/index.html in your browser.