| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | test: rename (meths, funcs) -> (api, fn) | Lewis Russell | 2024-01-12 |
| | | |||
| * | test: normalise nvim bridge functions | Lewis Russell | 2024-01-12 |
| | | | | | | - remove helpers.cur*meths - remove helpers.nvim | ||
| * | refactor: format test/* | Justin M. Keyes | 2024-01-03 |
| | | |||
| * | vim-patch:8.2.0867: using \{xxx} for encoding a modifier is not nice | zeertzjq | 2022-04-29 |
| | | | | | | | | | | Problem: Using \{xxx} for encoding a modifier is not nice. Solution: Use \<*xxx> instead, since it's the same as \<xxx> but producing a different code. https://github.com/vim/vim/commit/fccd93f0917234b962ce07d1df3adf9d7105936f Use this notation in langmap_spec. | ||
| * | test: correct order of arguments to eq() and neq() | zeertzjq | 2022-04-26 |
| | | |||
| * | test: reorg #15698 | Justin M. Keyes | 2021-09-17 |
| Problem: Subdirectories like "visual", "insert", "normal" encourage people to separate *related* tests for no good reason. Typically the _mode_ is not the relevant topic of a test (and when it is, _then_ create an appropriate describe() or it()). Solution: - Delete the various `test/functional/<mode>/` subdirectories, move their tests to more meaningful topics. - Rename `…/normal/` to `…/editor/`. - Move or merge `…/visual/*` and `…/insert/*` tests into here where appropriate. - Rename `…/eval/` to `…/vimscript/`. - Move `…/viml/*` into here also. * test(reorg): insert/* => editor/mode_insert_spec.lua * test(reorg): cmdline/* => editor/mode_cmdline_spec.lua * test(reorg): eval core tests => eval_spec.lua | |||