diff options
author | Damien George <damien.p.george@gmail.com> | 2016-09-05 12:08:25 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-09-05 12:08:25 +1000 |
commit | cac8dc34149686679b67037d393d3ea1c6aff779 (patch) | |
tree | d40b84e2030ed576cface07dccf8e3c88f994ab7 /tests/extmod/framebuf1.py | |
parent | 778729c5977633978aef2ec302472505973a657e (diff) | |
download | micropython-cac8dc34149686679b67037d393d3ea1c6aff779.tar.gz micropython-cac8dc34149686679b67037d393d3ea1c6aff779.zip |
tests/extmod/framebuf1: Add tests for scrolling in the x-direction.
Diffstat (limited to 'tests/extmod/framebuf1.py')
-rw-r--r-- | tests/extmod/framebuf1.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/extmod/framebuf1.py b/tests/extmod/framebuf1.py index 85555d0d2c..f550b6b4f4 100644 --- a/tests/extmod/framebuf1.py +++ b/tests/extmod/framebuf1.py @@ -33,3 +33,9 @@ fbuf.scroll(0, 1) print(buf) fbuf.scroll(0, -2) print(buf) +fbuf.scroll(1, 0) +print(buf) +fbuf.scroll(-1, 0) +print(buf) +fbuf.scroll(2, 2) +print(buf) |