micropython/tests
Damien George bb91f1195a py: Improve range: add len, subscr, proper print.
Can now index ranges with integers and slices, and reverse ranges
(although reversing is not very efficient).

Not sure how useful this stuff is, but gets us closer to having all of
Python's builtins.
2014-08-12 19:41:18 +01:00
..
basics py: Improve range: add len, subscr, proper print. 2014-08-12 19:41:18 +01:00
bench
bytecode
extmod
float
import py: Implement __file__ attribute for modules. 2014-07-28 21:21:59 +03:00
inlineasm
io tests: Add testcase for read by length past EOF. 2014-07-22 00:11:37 +03:00
micropython
misc
pyb tests, pyb: Update pin test. 2014-08-08 22:38:58 +01:00
pybnative
unicode
README
pyboard.py
run-bench-tests
run-tests
run-tests-exp.sh

README

This directory contains tests for various functionality areas of MicroPython.
To run all stable tests, run "run-tests" script in this directory. Note
that bytecode tests are not yet stable and should be run separately in
"bytecode" subdirectory.

When creating new tests, anything that relies on float support should go in the 
float/ subdirectory.  Anything that relies on import x, where x is not a built-in
module, should go in the import/ subdirectory.