aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_netstring.py
Commit message (Collapse)AuthorAgeFilesLines
* netstring.py 100% unit test coverage.Aldo Cortesi2011-03-121-0/+10
|
* Add a simple server playback state object.Aldo Cortesi2011-02-211-1/+0
| | | | | | | | We use a loose hash to match incoming requests with recorded flows. At the moment, this hash is over the host, port, scheme, method, path and content of the request. Note that headers are not included here - if we do want to include headers, we would have to do some work to normalize them to remove variations between user agents, header order, etc. etc.
* Clean up and strip down netstrings module.Aldo Cortesi2011-02-201-7/+0
|
* Import Will McGugan's netstring module.Aldo Cortesi2011-02-161-0/+63
Module is in the Public Domain. I expect to modify and extend this module, so I've imported into main library rather than contrib. Code has been reformatted to suite our code standard, tests have been extrated into /tests directory.