aboutsummaryrefslogtreecommitdiff
path: root/evil-test-helpers.el
AgeCommit message (Collapse)Author
2022-04-30Bump version to 1.14.21.14.2stablerelease-1.14Tom Dalziel
2022-04-25Bump version to 1.14.11.14.1Tom Dalziel
2020-10-01Make undo-tree an optional dependencyVasilij Schneidermann
Closes #1074
2020-08-16Make Flycheck usable in evil-tests in Emacs >= 25.1Erik Hahn
Flycheck aborted because compiling evil-tests resulted in too many warnings because x-select-enable-clipboard is deprecated. Create our own alias that is not.
2020-03-04Bump version to 1.14.01.14.0Eivind Fonn
2020-01-29Re-enable lexical bindingEivind Fonn
This reverts commit e9391ae769bee189ef6144b8861b117d5c948a80, and removes spurious debug messages.
2020-01-28Revert "Enable lexical binding"Eivind Fonn
This reverts commit c6086a7b0b44963071096e3ed7545f617de88915.
2020-01-28Enable lexical bindingEivind Fonn
2020-01-13Revert "Enable undo-tree-mode only when evil-mode is turned on"Eivind Fonn
2020-01-13Enable undo-tree-mode only when evil-mode is turned onEivind Fonn
2019-12-18Bump version to 1.13.0Eivind Fonn
Version 1.2.15 was accidentally tagged as 1.12.15, and released as such by MELPA Stable, so now I guess we have to run with it.
2019-12-11Bump version to 1.3.0-snapshotEivind Fonn
2019-12-11Bump version to 1.2.151.2.15Eivind Fonn
2019-01-04Bump version to 1.2.141.2.14Eivind Fonn
2018-01-09Remove evil-temp-filenameJustin Burkett
With the previous change, this function just serves to obfuscate the use of make-temp-file. It's probably clearer to use make-temp-file directly.
2018-01-09Don't use make-temp-nameJustin Burkett
The docstring says there is a race condition if you use make-temp-name then later try to write the file which is exactly what was happening in evil-test-write. I suspect this is the cause of the (random) segfaults in travis. Also disentangle the separate tests in evil-test-write.
2017-11-22Remove dependency on clJustin Burkett
Replace caddr in evil-test-helpers.el with primitive functions.
2017-10-02update version to 1.2.131.2.13Eivind Fonn
2017-07-19Cleanup evil-test-helper.elEvgeni Kolev
- add Package-Requires header - fix byte compile warning about evil-test-selection - move call to `provide` to the bottom of the file
2017-07-04Split evil-tests.el into two filesEvgeni Kolev
The new file evil-test-helpers.el can be used by evil plugin authors to write tests in the same manner as evil-mode's tests.