about summary refs log tree commit diff stats
path: root/Manual_tests.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-03-30 23:12:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-03-30 23:12:01 -0700
commit4c601ce9fdb762716231785e8c611854ef277ef9 (patch)
tree2033a81644b7f72e3d3055db250d893a2eaad3db /Manual_tests.md
parent0aa69d831d8116a3d35e963d021f8f95b16b30b4 (diff)
parent563f22116cdb5f4ac2f873b84df8bfefa85d74ff (diff)
downloadtext.love-4c601ce9fdb762716231785e8c611854ef277ef9.tar.gz
Merge lines.love
Diffstat (limited to 'Manual_tests.md')
-rw-r--r--Manual_tests.md19
1 files changed, 8 insertions, 11 deletions
diff --git a/Manual_tests.md b/Manual_tests.md
index 45154e3..5e702fa 100644
--- a/Manual_tests.md
+++ b/Manual_tests.md
@@ -3,16 +3,13 @@ program before it ever runs. However, some things don't have tests yet, either
 because I don't know how to test them or because I've been lazy. I'll at least
 record those here.
 
-Startup:
-    - terminal log shows unit tests running
-
 Initializing settings:
-    - delete app settings, start; window opens running the text editor
-    - quit while running the text editor, restart; window opens running the text editor in same position+dimensions
-    - quit while editing source (color; no selection), restart; window opens editing source in same position+dimensions
-    - start out running the text editor, move window, press ctrl+e twice; window is running text editor in same position+dimensions
-    - start out editing source, move window, press ctrl+e twice; window is editing source in same position+dimensions
-    - no log file; switching to source works
+  - delete app settings, start; window opens running the text editor
+  - quit while running the text editor, restart; window opens running the text editor in same position+dimensions
+  - quit while editing source (color; no selection), restart; window opens editing source in same position+dimensions
+  - start out running the text editor, move window, press ctrl+e twice; window is running text editor in same position+dimensions
+  - start out editing source, move window, press ctrl+e twice; window is editing source in same position+dimensions
+  - no log file; switching to source works
 
 Code loading:
 * run love with directory; text editor runs
@@ -46,8 +43,8 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
 * Like any high-level language, it's easy to accidentally alias two non-scalar
   variables. I wish there was a way to require copy when assigning.
 
-* I wish I could require pixel coordinates to integers. The editor defensively
-  converts input margins to integers.
+* I wish I could require pixel coordinates to be integers. The editor
+  defensively converts input margins to integers.
 
 * My test harness automatically runs `test_*` methods -- but only at the
   top-level. I wish there was a way to raise warnings if someone defines such