summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/framebuf1.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-09-05 12:08:25 +1000
committerDamien George <damien.p.george@gmail.com>2016-09-05 12:08:25 +1000
commitcac8dc34149686679b67037d393d3ea1c6aff779 (patch)
treed40b84e2030ed576cface07dccf8e3c88f994ab7 /tests/extmod/framebuf1.py
parent778729c5977633978aef2ec302472505973a657e (diff)
downloadmicropython-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.py6
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)