mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
260975e8af
Add a new test function to allow simpler testing of emacs functionality. `test_emacs_expect_t' takes one argument - a lisp expression to evaluate. The test passes if the expression returns `t', otherwise it fails and the output is reported to the tester.
9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test_description="emacs test function sanity"
|
|
. test-lib.sh
|
|
|
|
test_begin_subtest "emacs test function sanity"
|
|
test_emacs_expect_t 't'
|
|
|
|
test_done
|