summary refs log tree commit diff stats
path: root/tests/cpp/tsigbreak.nim
Commit message (Expand)AuthorAgeFilesLines
* updated tests to be executedArne Döring2018-11-231-0/+1
* use targets from test spec when running testament tests (#6687)Jacek Sieka2017-11-151-1/+1
* make tsigbreak.nim compileAndreas Rumpf2016-12-121-0/+28
2022-06-20 08:24:56 -0700 clearer copy' href='/akkartik/text.love/commit/Manual_tests.md?id=9aa7577446ff484b6a2d6713637bfbafe931f458'>9aa7577 ^
9c8285b ^



da9d948 ^




e839c30 ^


53c3524 ^
2e3a85d ^



53c3524 ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
                                                                            


                                                                              





                                                                             


                                                                            



                                                                          




                                                                              


                                                                              
 



                                                                             






                                   
I care a lot about being able to automatically check _any_ property about my
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

Lua 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 label
  byte offsets with the suffix `_offset`, and character positions as `_pos`.
  For example, `string.sub` should never use a `_pos` to substring, only an
  `_offset`.

* Some ADT/interface support would be helpful in keeping per-line state in
  sync. Any change to line data should clear line `fragments` and
  `screen_line_starting_pos`.

* Some inputs get processed in love.textinput and some in love.keypressed.
  Several bugs have arisen due to destructive interference between the two for
  some key chord. I wish I could guarantee that the two sets are disjoint. But
  perhaps I'm not thinking about this right.

* 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.

* 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