about summary refs log tree commit diff stats
path: root/Manual_tests.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-07-20 08:53:31 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-07-20 08:53:31 -0700
commit192e16b42f1312dde5a23a3907de2af5a46de9a7 (patch)
tree0b2aaea09a6ebbf0c0c3003830372ab0eb30d700 /Manual_tests.md
parent88013000fc0445496e1c51ee869a0c36088839e2 (diff)
downloadtext.love-192e16b42f1312dde5a23a3907de2af5a46de9a7.tar.gz
reorg manual tests doc
Diffstat (limited to 'Manual_tests.md')
-rw-r--r--Manual_tests.md16
1 files changed, 7 insertions, 9 deletions
diff --git a/Manual_tests.md b/Manual_tests.md
index 8c2dd30..767d0fc 100644
--- a/Manual_tests.md
+++ b/Manual_tests.md
@@ -3,7 +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.
 
-### Compromises
+* Initializing settings:
+    - from previous session
+        - Filename as absolute path
+        - Filename as relative path
+    - from defaults
+
+### Other compromises
 
 Lua is dynamically typed. Tests can't patch over lack of type-checking.
 
@@ -27,11 +33,3 @@ Lua is dynamically typed. Tests can't patch over lack of type-checking.
 * 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
   a function inside a dict somewhere.
-
-### Todo list
-
-* Initializing settings:
-    - from previous session
-        - Filename as absolute path
-        - Filename as relative path
-    - from defaults