Coverage 100%

This commit is contained in:
Madison Rye Progress
2026-03-18 14:33:57 -07:00
parent 3f1053ea61
commit bbc87afee1
5 changed files with 15 additions and 20 deletions

View File

@ -82,12 +82,12 @@ func TestCursor(t *testing.T) {
})
Convey("You can't move up beyond the top", func() {
s.CursorCellUp()
s.CursorSectionUp()
So(*s.cursor, ShouldResemble, Point{0, 0})
})
Convey("You can't move left beyond the edge", func() {
s.CursorCellLeft()
s.CursorSectionLeft()
So(*s.cursor, ShouldResemble, Point{0, 0})
})