tests/extmod/framebuf1: Add test for no-op fill_rect.

This commit is contained in:
Damien George 2017-01-19 23:37:44 +11:00
parent 213a718953
commit 4c4f586e2c
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,7 @@ print('rect', buf)
#fill rect
fbuf.fill(0)
fbuf.fill_rect(0, 0, 0, 3, 1) # zero width, no-operation
fbuf.fill_rect(1, 1, 3, 3, 1)
print('fill_rect', buf)