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
commitdaa379adb02505248e5ec82ec2fc1ea29322da16 (patch)
treeed18818b860c8557ec5e606338c27b49bf693772
parent7a046982fc3bfa9f2d54585eff090259a29579cb (diff)
downloadgeiser-daa379adb02505248e5ec82ec2fc1ea29322da16.tar.gz
geiser-daa379adb02505248e5ec82ec2fc1ea29322da16.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"