kakoune/test
Maxime Coste a0de41d165 goto last change: do not try to avoid end of lines
Avoiding end of line is a behaviour we avoid (pun intended) more and more
in Kakoune source code, now that end of lines are regularly selected, it
makes no sense to just to next line when last modification lies on an EOL
(and it probably did not make much sense back when that code was written).
2018-02-24 21:09:09 +11:00
..
compose test: Fix UTF8 compliant locale detection 2017-02-23 18:46:56 +03:00
display Rework partial line display logic 2017-06-09 13:22:32 +01:00
highlight Move highlighters into Scopes 2017-10-28 13:43:04 +08:00
indent c-family.kak: indent after parenthesis at end of line 2017-12-03 17:47:44 +08:00
normal goto last change: do not try to avoid end of lines 2018-02-24 21:09:09 +11:00
regression Fix parsing of percent tokens with unicode separators 2018-02-06 20:29:08 +11:00
README.asciidoc add testing framework 2014-06-30 12:22:50 +02:00
run test: fix run script after changes jump list behaviour 2018-02-24 20:59:31 +11:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Regression test
===============

:unified-context-diff: https://en.wikipedia.org/wiki/Diff#Unified_format

Source structure
----------------

----------------------------------------------
.
├── unit
│   └── …
└── compose
    └── …
        ├── cmd          → command
        ├── [in]         → start file
        ├── [out]        → end file
        ├── [selections] → selection contents
        ├── [state]      → selection states
        └── [rc]         → configuration
----------------------------------------------

Usage
-----

To test, just type +run [test]+ in the +test+ directory.
It will print each passing test.  If a test fails, a {unified-context-diff}[unified context diff]
is printed showing the tests expected output and the actual output.