about summary refs log tree commit diff stats
path: root/main_tests.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-30 19:36:37 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-30 19:36:37 -0700
commit08a50b7fff71324897eeb31a0d323d3444ef105b (patch)
treee063a2365c5ea663e56ddfb108f747e0f0d74315 /main_tests.lua
parent510b0d1dc378f87517e17bfe1961fbefeb58d033 (diff)
downloadview.love-08a50b7fff71324897eeb31a0d323d3444ef105b.tar.gz
rip out the line-width slider
New plan:
  - render text across the whole window
  - let people resize the window to the desired line width
  - save window size settings between sessions
Diffstat (limited to 'main_tests.lua')
-rw-r--r--main_tests.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/main_tests.lua b/main_tests.lua
index a86c825..98cc73d 100644
--- a/main_tests.lua
+++ b/main_tests.lua
@@ -66,21 +66,3 @@ function test_drop_file_saves_previous()
   -- filesystem now contains a file called foo
   check_eq(App.filesystem['foo'], 'abc\ndef\n', 'F - test_drop_file_saves_previous')
 end
-
-function test_adjust_line_width()
-  io.write('\ntest_adjust_line_width')
-  Filename = 'foo'
-  App.screen.init{width=Margin_left+300, height=300}
-  Line_width = 256
-  App.draw()  -- initialize button
-  App.run_after_mouse_press(256, Margin_top-3, 1)
-  App.mouse_move(200, 37)
-  -- no change for some time
-  App.wait_fake_time(0.01)
-  App.update(0)
-  check_eq(Line_width, 256, 'F - test_adjust_line_width/early')
-  -- after 0.1s the change takes
-  App.wait_fake_time(0.1)
-  App.update(0)
-  check_eq(Line_width, 200, 'F - test_adjust_line_width')
-end