summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorcskksc <ckoparkar@live.in>2016-04-19 11:20:13 +0530
committercskksc <ckoparkar@live.in>2016-04-19 11:20:13 +0530
commit6ae631ae043ccc322a98bf71df590d130c6360c7 (patch)
treeecc296dde3244840d902a2719d5597d0fab70a67 /test
parentda36cc02bbb64ac3d69e24ad7d15b0e6883df0c2 (diff)
Migrate non-automated tests to buttercup
Diffstat (limited to 'test')
-rw-r--r--test/cider-tests--no-auto.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cider-tests--no-auto.el b/test/cider-tests--no-auto.el
index d0c1e29a..aadcc238 100644
--- a/test/cider-tests--no-auto.el
+++ b/test/cider-tests--no-auto.el
@@ -30,7 +30,7 @@
;;
;;; Code:
-(require 'ert)
+(require 'buttercup)
(require 'cider)
(require 'cider-compat)
(require 'cl-lib)
@@ -94,6 +94,6 @@ from the latter. Remaining content is compared for string equality."
(message "Mismatched: %s" diffs))
(concatenate 'list untested diffs))))
-(ert-deftest test-cider-cider-docs ()
- "Test all clojure doc output."
- (should (equal nil (cider-test-all-docs))))
+(describe "cider-test-all-docs"
+ (it "returns nil if `cider-doc' output matches with the `clojure.repl/doc'"
+ (expect (cider-test-all-docs) :to-equal nil)))