a little more prose describing manual_tests
[?]
Jun 14, 2022, 10:14 PM
66X36NZNEHWWURKSZ6G3XSC4CKQ7NTR4HYGDJGLHAUELMUAQC34ACDependencies
- [2]
CPZGQT72go through and fix similar issues - [3]
T4FRZSYLdelete an ancient, unused file - [4]
BLWAYPKVextract a module - [5]
D2GCFTTTclean up repl functionality - [6]
OTIBCAUJlove2d scaffold - [7]
TLOAPLBJadd a license - [8]
FS2ITYYHrecord a known issue - [9]
TVCPXAAUrename - [10]
OGUV4HSAremove some memory leaks from rendered fragments - [11]
RSZD5A7Gforgot to add json.lua - [12]
VHQCNMARseveral more modules - [13]
BULPIBEGbeginnings of a module for the text editor - [14]
VXORMHMEdelete experimental REPL - [15]
6LJZN727handle chords - [16]
F63Q4OV7several bugfixes - [17]
3QNOKBFMbeginnings of a test harness - [18]
AVTNUQYRbasic test-enabled framework - [19]
73OCE2MCafter much struggle, a brute-force undo - [20]
XX7G2FFJintermingle freehand line drawings with text - [21]
LXTTOB33extract a couple of files - [22]
R5QXEHUIsomebody stop me - [23]
4YDBYBA4clean up memory leak experiments - [24]
DSLD74DKlots more tests - [25]
K2X6G75Zstart writing some tests for drawings - [26]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing
Change contents
- file move: manual_tests → Manual_tests.md
- replacement in Manual_tests.md at line 1
-- static properties of the codeAll strings are UTF-8. Bytes within them are not characters.I try to label byte offsets as _offset, and character positions as _pos.For example, string.sub should never use a _pos to substring, only an _offset.Wish I had some static typing here. We're not going to try to write tests to catch issues like this.I care a lot about being able to automatically check _any_ property about myprogram before it ever runs. However, some things don't have tests yet.### CompromisesLua is dynamically typed. Tests can't patch over lack of type-checking.* All strings are UTF-8. Bytes within them are not characters. I try to labelbyte offsets as _offset, and character positions as _pos. For example,string.sub should never use a _pos to substring, only an _offset.### Todo list - edit in Manual_tests.md at line 15
-- manual tests