diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-05-13 17:29:45 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-05-13 17:29:45 -0700 |
commit | 10932bd491da0acf6b34c59325d3b394dd89eaa4 (patch) | |
tree | 05143fc0265c9ef1dd58f136880f161a7d174f06 /source_text_tests.lua | |
parent | e39fe490e43d7950fce23db7fb17631728f11ecc (diff) | |
parent | 8e02c2c0218b4e233f14d130f7d339128886f763 (diff) | |
download | view.love-10932bd491da0acf6b34c59325d3b394dd89eaa4.tar.gz |
Merge lines.love
Diffstat (limited to 'source_text_tests.lua')
-rw-r--r-- | source_text_tests.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source_text_tests.lua b/source_text_tests.lua index bb3387f..11e7613 100644 --- a/source_text_tests.lua +++ b/source_text_tests.lua @@ -1955,7 +1955,7 @@ end function test_search() App.screen.init{width=120, height=60} Editor_state = edit.initialize_test_state() - Editor_state.lines = load_array{'```lines', '```', 'def', 'ghi', 'deg'} + Editor_state.lines = load_array{'```lines', '```', 'def', 'ghi', '’deg'} -- contains unicode quote in final line Text.redraw_all(Editor_state) Editor_state.cursor1 = {line=1, pos=1} Editor_state.screen_top1 = {line=1, pos=1} @@ -1976,15 +1976,15 @@ function test_search() edit.run_after_keychord(Editor_state, 'down') edit.run_after_keychord(Editor_state, 'return') check_eq(Editor_state.cursor1.line, 4, '2/cursor:line') - check_eq(Editor_state.cursor1.pos, 1, '2/cursor:pos') + check_eq(Editor_state.cursor1.pos, 2, '2/cursor:pos') end function test_search_upwards() App.screen.init{width=120, height=60} Editor_state = edit.initialize_test_state() - Editor_state.lines = load_array{'abc abd'} + Editor_state.lines = load_array{'’abc', 'abd'} -- contains unicode quote Text.redraw_all(Editor_state) - Editor_state.cursor1 = {line=1, pos=2} + Editor_state.cursor1 = {line=2, pos=1} Editor_state.screen_top1 = {line=1, pos=1} Editor_state.screen_bottom1 = {} edit.draw(Editor_state) @@ -1994,15 +1994,15 @@ function test_search_upwards() -- search for previous occurrence edit.run_after_keychord(Editor_state, 'up') check_eq(Editor_state.cursor1.line, 1, '2/cursor:line') - check_eq(Editor_state.cursor1.pos, 1, '2/cursor:pos') + check_eq(Editor_state.cursor1.pos, 2, '2/cursor:pos') end function test_search_wrap() App.screen.init{width=120, height=60} Editor_state = edit.initialize_test_state() - Editor_state.lines = load_array{'abc'} + Editor_state.lines = load_array{'’abc', 'def'} -- contains unicode quote in first line Text.redraw_all(Editor_state) - Editor_state.cursor1 = {line=1, pos=3} + Editor_state.cursor1 = {line=2, pos=1} Editor_state.screen_top1 = {line=1, pos=1} Editor_state.screen_bottom1 = {} edit.draw(Editor_state) @@ -2012,13 +2012,13 @@ function test_search_wrap() edit.run_after_keychord(Editor_state, 'return') -- cursor wraps check_eq(Editor_state.cursor1.line, 1, '1/cursor:line') - check_eq(Editor_state.cursor1.pos, 1, '1/cursor:pos') + check_eq(Editor_state.cursor1.pos, 2, '1/cursor:pos') end function test_search_wrap_upwards() App.screen.init{width=120, height=60} Editor_state = edit.initialize_test_state() - Editor_state.lines = load_array{'abc abd'} + Editor_state.lines = load_array{'abc ’abd'} -- contains unicode quote Text.redraw_all(Editor_state) Editor_state.cursor1 = {line=1, pos=1} Editor_state.screen_top1 = {line=1, pos=1} @@ -2030,5 +2030,5 @@ function test_search_wrap_upwards() edit.run_after_keychord(Editor_state, 'up') -- cursor wraps check_eq(Editor_state.cursor1.line, 1, '1/cursor:line') - check_eq(Editor_state.cursor1.pos, 5, '1/cursor:pos') + check_eq(Editor_state.cursor1.pos, 6, '1/cursor:pos') end |