1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-20 09:19:24 +03:00
kakoune/test
Maxime Coste 67424aae1e Remove avoidance of end of lines
Various places in Kakoune code used to modify selections so that
cursors would not lie on an end of line. Remove those to increase
Kakoune's consistency and simplicity.

Now that end of lines are highlighted separately, they should not
be handled specially in most commands.
2018-02-25 00:05:05 +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 Remove avoidance of end of lines 2018-02-25 00:05:05 +11:00
normal Remove avoidance of end of lines 2018-02-25 00:05:05 +11:00
regression Remove avoidance of end of lines 2018-02-25 00:05:05 +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.