aboutsummaryrefslogtreecommitdiff
path: root/tests/extmod/websocket.py
AgeCommit message (Collapse)Author
2017-03-10tests/extmod: Rename websocket test to websocket_basic.Damien George
This is so that the filename of the test doesn't clash with the module name itself (being "websocket"), and lead to potential problems executing the test.
2017-03-09tests/extmod: Add websocket tests.Alex March
These short unit tests test the base uPy methods as well as parts of the websocket protocol, as implemented by uPy. @dpgeorge converted the original socket based tests by @hosaka to ones that only require io.BytesIO.