summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-10-03 16:31:41 +0300
committerAlex Kost <alezost@gmail.com>2015-10-03 16:31:41 +0300
commit3cef425f712f16fb4d2352c6e81664c3bda1e231 (patch)
tree6d1b9416f5351ee67003d0ba6b51add7eb82f7d0
parentece49d5bd0692bc8373a8b024909530d0db67cde (diff)
downloadgeiser-guile-3cef425f712f16fb4d2352c6e81664c3bda1e231.tar.gz
geiser-guile-3cef425f712f16fb4d2352c6e81664c3bda1e231.tar.bz2
Add highlighting/indentation for tests
API for test suites is defined by SRFI-64.
-rw-r--r--elisp/geiser-syntax.el25
1 files changed, 25 insertions, 0 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el
index 71ca83e..d7f6241 100644
--- a/elisp/geiser-syntax.el
+++ b/elisp/geiser-syntax.el
@@ -50,6 +50,20 @@
(receive 2)
(require-extension 0)
(syntax-case 2)
+ (test-approximate 1)
+ (test-assert 1)
+ (test-eq 1)
+ (test-equal 1)
+ (test-eqv 1)
+ (test-group-with-cleanup 1)
+ (test-runner-on-bad-count! 1)
+ (test-runner-on-bad-end-name! 1)
+ (test-runner-on-final! 1)
+ (test-runner-on-group-begin! 1)
+ (test-runner-on-group-end! 1)
+ (test-runner-on-test-begin! 1)
+ (test-runner-on-test-end! 1)
+ (test-with-runner 1)
(unless 1)
(when 1)
(while 1)
@@ -78,6 +92,17 @@
"receive"
"require-extension"
"set!"
+ "test-approximate"
+ "test-assert"
+ "test-begin"
+ "test-end"
+ "test-eq"
+ "test-equal"
+ "test-eqv"
+ "test-error"
+ "test-group"
+ "test-group-with-cleanup"
+ "test-with-runner"
"unless"
"when"
"with-exception-handler"