summaryrefslogtreecommitdiff
path: root/runtime/doc/testing.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime filesBram Moolenaar2021-08-141-1/+1
|
* Update runtime filesBram Moolenaar2021-07-071-2/+3
|
* Update runtime filesBram Moolenaar2021-06-271-1/+1
|
* patch 8.2.3040: GUI: dropping files not testedv8.2.3040Yegappan Lakshmanan2021-06-231-3/+18
| | | | | | Problem: GUI: dropping files not tested. Solution: Add test_gui_drop_files() and tests. (Yegappan Lakshmanan, closes #8434)
* patch 8.2.3028: GUI mouse events not testedv8.2.3028Yegappan Lakshmanan2021-06-211-1/+25
| | | | | | Problem: GUI mouse events not tested. Solution: Add test_gui_mouse_event(). Add mouse tests. Also add a few viminfo tests. (Yegappan Lakshmanan, closes #8407)
* Update runtime filesBram Moolenaar2021-04-071-1/+1
|
* patch 8.2.2694: when 'matchpairs' is empty every character beepsv8.2.2694Bram Moolenaar2021-04-021-1/+10
| | | | | | Problem: When 'matchpairs' is empty every character beeps. (Marco Hinz) Solution: Bail out when no character in 'matchpairs' was found. (closes #8053) Add assert_nobeep().
* Update runtime files.Bram Moolenaar2021-03-131-1/+2
|
* Update runtime files.Bram Moolenaar2020-12-231-3/+6
|
* Update runtime files.Bram Moolenaar2020-09-071-1/+1
|
* patch 8.2.1631: test_fails() does not check the context of the line numberv8.2.1631Bram Moolenaar2020-09-061-1/+5
| | | | | Problem: test_fails() does not check the context of the line number. Solution: Use another argument to specify the context of the line number.
* Update runtime files.Bram Moolenaar2020-08-301-1/+1
|
* patch 8.2.1479: Vim9: error for list index uses wrong line numberv8.2.1479Bram Moolenaar2020-08-181-3/+12
| | | | | | Problem: Vim9: error for list index uses wrong line number. Solution: Set source line number. (closes #6724) Add a way to assert the line number of the error with assert_fails().
* patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439Bram Moolenaar2020-08-131-0/+6
| | | | | | Problem: Tiny and small builds have no test coverage. Solution: Restore tests that do not depend on the +eval feature. (Ken Takata, closes #6696)
* patch 8.2.1420: test 49 is old stylev8.2.1420Bram Moolenaar2020-08-111-11/+4
| | | | | | Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
* Update runtime files.Bram Moolenaar2020-07-261-1/+1
|
* patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar2020-07-111-2/+17
| | | | | | Problem: assert_fails() checks the last error message. Solution: Check the first error, it is more relevant. Fix all the tests that rely on the old behavior.
* Update runtime filesBram Moolenaar2020-07-101-2/+3
|
* Update runtime filesBram Moolenaar2020-06-211-1/+1
|
* patch 8.2.0982: insufficient testing for reading/writing filesv8.2.0982Bram Moolenaar2020-06-151-0/+2
| | | | | | Problem: Insufficient testing for reading/writing files. Solution: Add more tests. (Yegappan Lakshmanan, closes #6257) Add "ui_delay" to test_override() and use it for the CTRL-O test.
* Update runtime filesBram Moolenaar2020-06-141-1/+1
|
* patch 8.2.0970: terminal properties are not available in Vim scriptv8.2.0970Bram Moolenaar2020-06-131-0/+2
| | | | | Problem: Terminal properties are not available in Vim script. Solution: Add the terminalprops() function.
* Update runtime filesBram Moolenaar2020-06-071-1/+1
|
* patch 8.2.0893: assert_equalfile() does not take a third argumentv8.2.0893Bram Moolenaar2020-06-031-3/+1
| | | | | Problem: Assert_equalfile() does not take a third argument. Solution: Implement the third argument. (Gary Johnson)
* Update runtime filesBram Moolenaar2020-04-101-2/+2
|
* patch 8.2.0493: Vim9: some error messages not testedv8.2.0493Bram Moolenaar2020-04-011-0/+4
| | | | | Problem: Vim9: some error messages not tested. Solution: Add more tests. Fix uncovered bugs.
* Update runtime files.Bram Moolenaar2020-02-261-1/+1
|
* patch 8.2.0299: Vim9: ISN_STORE with argument not testedv8.2.0299Bram Moolenaar2020-02-221-0/+7
| | | | | | Problem: Vim9: ISN_STORE with argument not tested. Some cases in tv2bool() not tested. Solution: Add tests. Add test_unknown() and test_void().
* Update runtime files.Bram Moolenaar2020-02-151-1/+1
|
* patch 8.2.0250: test_clear_search_pat() is unusedv8.2.0250Bram Moolenaar2020-02-121-5/+0
| | | | | Problem: test_clear_search_pat() is unused. Solution: Remove the function. (Yegappan Lakshmanan, closes #5624)
* patch 8.2.0233: crash when using garbagecollect() in between rand()v8.2.0233Bram Moolenaar2020-02-081-1/+4
| | | | | | Problem: Crash when using garbagecollect() in between rand(). Solution: Redesign the rand() and srand() implementation. (Yasuhiro Matsumoto, closes #5587, closes #5588)
* patch 8.2.0212: missing search/substitute pattern hardly testedv8.2.0212Bram Moolenaar2020-02-051-0/+5
| | | | | | Problem: Missing search/substitute pattern hardly tested. Solution: Add test_clear_search_pat() and tests. (Yegappan Lakshmanan, closes #5579)
* Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar2019-12-121-1/+1
|
* Update runtime filesBram Moolenaar2019-09-111-1/+1
|
* patch 8.1.2011: more functions can be used as methodsv8.1.2011Bram Moolenaar2019-09-081-0/+21
| | | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method. Make the window command test faster.
* Runtime files update.Bram Moolenaar2019-08-311-1/+1
|
* patch 8.1.1909: more functions can be used as methodsv8.1.1909Bram Moolenaar2019-08-211-0/+9
| | | | | Problem: More functions can be used as methods. Solution: Make a few more functions usable as a method.
* Update runtime files.Bram Moolenaar2019-08-171-1/+1
|
* patch 8.1.1861: only some assert functions can be used as a methodv8.1.1861Bram Moolenaar2019-08-161-0/+18
| | | | | Problem: Only some assert functions can be used as a method. Solution: Allow using most assert functions as a method.
* patch 8.1.1807: more functions can be used as a methodv8.1.1807Bram Moolenaar2019-08-041-3/+10
| | | | | | Problem: More functions can be used as a method. Solution: Add append(), appendbufline(), assert_equal(), etc. Also add the :eval command.
* Update runtime files.Bram Moolenaar2019-07-311-5/+5
|
* patch 8.1.1726: the eval.txt help file is too bigv8.1.1726Bram Moolenaar2019-07-211-0/+317
Problem: The eval.txt help file is too big. Solution: Split off testing support to testing.txt. Move function details to where the functionality is explained.