aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* [oni-scheme] Check that the output ends with the ↵Gravatar Tom Willemse2021-04-081-2/+2
| | | | | | | | | | | | | | expected text All of the other tests already check that the output ends with the expected output and isn’t exactly equal to it. This is because I don’t have enough control over (or don’t know enough about) the output Emacs and other packages generate. In order to prevent false-positives from happening as is happening with ‘scheme-mode’, I don’t check what’s before the output I expect. The false-positive that’s happening with ‘scheme-mode’ is an issue that it seems like ‘geiser’ has started complaining that it can’t find ‘guile’, which is expected.
* [oni-scheme] Print output of integration tests for debuggingGravatar Tom Willemse2021-04-081-0/+4
| | | | | In bats, when you print to stdout during a test, if the test fails bats will show the output that was generated. If everything succeeds it hides the output.
* Decouple ‘oni-org’ and ‘oni-org-roam’Gravatar Tom Willemse2021-03-251-0/+11
| | | | | ‘org-roam’ doesn’t seem to work correctly on all the machines that I use ‘org-mode’ on.
* Check that the output of the ‘oni-smartparens’ test ↵Gravatar Tom Willemse2021-02-241-1/+1
| | | | | | | ends in t There can be other output, but that doesn’t mean the test failed, as long as t is the last thing.
* Add configuration for ElmGravatar Tom Willemse2021-02-091-0/+11
|
* Turn the result info ‘t’ or ‘nil’Gravatar Tom Willemse2021-02-091-1/+1
|
* Use ‘conf-unix-mode’ for ‘.service’ filesGravatar Tom Willemse2021-02-081-1/+11
|
* Add ‘embrace’ configurationGravatar Tom Willemse2020-10-302-0/+20
|
* Add jenkinsfile-modeGravatar Tom Willemse2020-10-191-0/+41
| | | | | Both ‘Jenkinsfile’ files and ‘*.pipeline’ files should be using ‘jenkinsfile-mode’.
* Add test to see if gcmh-mode is enabledGravatar Tom Willemse2020-10-151-0/+9
|
* Use ws-butlerGravatar Tom Willemse2020-10-151-0/+18
| | | | | | | | | | | | | | | | At work I have to work with a lot of files that other people work on as well. Other people don’t usually have their editor set up to remove all trailing whitespace, and we’re not allowed to make a change that includes a lot of extra whitespace changes[1]. So I end up having to revert a lot of whitespace changes just before submitting. And if I then have to make more changes, for example because something was pointed out in a code review, I have to do it again. ‘ws-butler’ promises that it will still prevent me from submitting extraneous whitespace, but will not touch lines that I haven’t changed, so that would prevent me from having to revert them all the time. [1]: This is good, having a lot of whitespace changes can distract from or even completely hide the actual change you’re trying to make.
* Diminish gcmh-modeGravatar Tom Willemse2020-10-151-0/+9
|
* Add ‘oni-lua’Gravatar Tom Willemse2020-09-071-0/+11
|
* Fixup oni-bat loading testGravatar Tom Willemse2020-05-111-3/+3
|
* Enable ‘bmx-mode’Gravatar Tom Willemse2020-05-021-0/+11
| | | | ‘bmx-mode’ is a package to be used with ‘bat-mode’.
* Fix oni-core testsGravatar Tom Willemse2020-04-261-1/+1
|
* Load autorevert explicitly in testsGravatar Tom Willemse2020-04-091-1/+3
|
* Diminish auto-revert-mode to Gravatar Tom Willemse2020-04-091-0/+21
|
* Diminish org-ednaGravatar Tom Willemse2020-04-091-0/+31
|
* Explicitly load yasnippet for testingGravatar Tom Willemse2020-04-091-2/+5
|
* Excplicitly load ‘oni-ivy’ for testingGravatar Tom Willemse2020-04-091-3/+8
|
* Fix tests by including ‘subr-x’Gravatar Tom Willemse2020-04-085-17/+22
| | | | | ‘string-empty-p’ is defined in ‘subr-x’ and this library isn’t loaded into Emacs by default.
* Test isearch-mode diminishing using a constantGravatar Tom Willemse2020-04-081-2/+4
| | | | | | | Apparently in the docker container that’s running the tests, reading  from the command-line makes it a multibyte character (105 776 127 130), but defined in Emacs it’s a unibyte character (61442). This might have something to do with UTF-16 vs UTF-8?
* Fix diminishing minor modes when reloading librariesGravatar Tom Willemse2020-04-086-0/+218
|
* Add basic fish shell script configurationGravatar Tom Willemse2020-04-081-0/+11
|
* Disable ‘shfmt-on-save-mode’ for ‘bats-mode’ buffersGravatar Tom Willemse2020-04-071-0/+8
|
* Ensure idle timer for ‘recentf-save-list’ only gets ↵Gravatar Tom Willemse2020-04-071-0/+9
| | | | created once
* Fix typoGravatar Tom Willemse2020-04-071-1/+1
|
* Use ‘nxml-mode’ for ‘.proj’ and ‘.targets’ filesGravatar Tom Willemse2020-04-071-0/+20
| | | | Both of these file types are used for MSBuild.
* Add navigation functions for end-of-line and ↵Gravatar Tom Willemse2020-04-072-0/+89
| | | | beginning-of-line
* Move CSS tests to batsGravatar Tom Willemse2020-04-072-36/+11
|
* Add Haskell configurationGravatar Tom Willemse2020-03-291-0/+11
|
* Add json configurationGravatar Tom Willemse2020-03-271-0/+11
|
* Add prescientGravatar Tom Willemse2020-02-241-0/+11
|
* Enable nxml-mode for .csproj filesGravatar Tom Willemse2020-01-281-0/+10
|
* Add tests for oni-csharpGravatar Tom Willemse2020-01-281-0/+21
|
* Add ‘smartparens’ to ‘oni-sh’Gravatar Tom Willemse2020-01-141-0/+11
|
* Fix integration test for ‘oni-cpp’Gravatar Tom Willemse2020-01-141-2/+2
| | | | | The output contains more than just the print statement in the test, but it ends with the result.
* Fix integration test for oni-cppGravatar Tom Willemse2020-01-141-1/+1
| | | | ‘oni-c++’ was renamed to ‘oni-cpp’
* Require oni-org for its unit testsGravatar Tom Willemse2020-01-131-0/+2
|
* Generate different colors for TODO keywords and tagsGravatar Tom Willemse2020-01-131-0/+18
|
* Add integration test for oni-c++Gravatar Tom Willemse2020-01-131-0/+11
|
* Fix file permissions for oni-bats.batsGravatar Tom Willemse2020-01-131-0/+0
|
* Add integration test for oni-browse-urlGravatar Tom Willemse2020-01-131-0/+11
|
* Add integration test for oni-confGravatar Tom Willemse2020-01-121-0/+11
|
* Make the wording of the different integration tests more ↵Gravatar Tom Willemse2020-01-084-4/+4
| | | | consistent
* Print output of oni-bats integration test on failureGravatar Tom Willemse2020-01-081-0/+2
|
* Add docker configurationGravatar Tom Willemse2020-01-071-0/+9
|
* Add test loading oni-bookmarkGravatar Tom Willemse2020-01-072-5/+9
|
* Add test loading oni-autohotkeyGravatar Tom Willemse2020-01-071-0/+9
|