summaryrefslogtreecommitdiff
path: root/test/run-tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-tests')
-rwxr-xr-xtest/run-tests12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/run-tests b/test/run-tests
index c923b3ea..937051a8 100755
--- a/test/run-tests
+++ b/test/run-tests
@@ -1,16 +1,16 @@
#!/usr/bin/env emacs --script
(let ((current-directory (file-name-directory load-file-name)))
- (setq nrepl-test-path (expand-file-name "." current-directory))
- (setq nrepl-root-path (expand-file-name ".." current-directory)))
+ (setq cider-test-path (expand-file-name "." current-directory))
+ (setq cider-root-path (expand-file-name ".." current-directory)))
-(add-to-list 'load-path nrepl-root-path)
-(add-to-list 'load-path nrepl-test-path)
+(add-to-list 'load-path cider-root-path)
+(add-to-list 'load-path cider-test-path)
-(require 'nrepl)
+(require 'cider)
(require 'cl)
-(dolist (test-file (or argv (directory-files nrepl-test-path t "-tests.el$")))
+(dolist (test-file (or argv (directory-files cider-test-path t "-tests.el$")))
(load test-file nil t))
;; run tests