a little more prose describing manual_tests
[?]
Jun 14, 2022, 10:14 PM
66X36NZNEHWWURKSZ6G3XSC4CKQ7NTR4HYGDJGLHAUELMUAQC34ACDependencies
- [2]
CPZGQT72go through and fix similar issues - [3]
4YDBYBA4clean up memory leak experiments - [4]
K2X6G75Zstart writing some tests for drawings - [5]
VXORMHMEdelete experimental REPL - [6]
TVCPXAAUrename - [7]
BLWAYPKVextract a module - [8]
RSZD5A7Gforgot to add json.lua - [9]
BULPIBEGbeginnings of a module for the text editor - [10]
VHQCNMARseveral more modules - [11]
OGUV4HSAremove some memory leaks from rendered fragments - [12]
DSLD74DKlots more tests - [13]
XX7G2FFJintermingle freehand line drawings with text - [14]
T4FRZSYLdelete an ancient, unused file - [15]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [16]
FS2ITYYHrecord a known issue - [17]
73OCE2MCafter much struggle, a brute-force undo - [18]
R5QXEHUIsomebody stop me - [19]
F63Q4OV7several bugfixes - [20]
TLOAPLBJadd a license - [21]
AVTNUQYRbasic test-enabled framework - [22]
LXTTOB33extract a couple of files - [23]
D2GCFTTTclean up repl functionality - [24]
6LJZN727handle chords - [25]
3QNOKBFMbeginnings of a test harness - [26]
OTIBCAUJlove2d scaffold
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