├── README.markdown ├── cli_skeleton └── tests ├── Makefile ├── faketcpserver.py ├── test_bottle.py ├── test_faketcpserver.py └── test_skeleton.py /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/README.markdown -------------------------------------------------------------------------------- /cli_skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/cli_skeleton -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/faketcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/tests/faketcpserver.py -------------------------------------------------------------------------------- /tests/test_bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/tests/test_bottle.py -------------------------------------------------------------------------------- /tests/test_faketcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/tests/test_faketcpserver.py -------------------------------------------------------------------------------- /tests/test_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linsomniac/python-unittest-skeleton/HEAD/tests/test_skeleton.py --------------------------------------------------------------------------------