We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54340cb commit 024e3f6Copy full SHA for 024e3f6
test/cider-eval-test.el
@@ -37,6 +37,13 @@
37
(filename (make-temp-file "abc.clj")))
38
(with-temp-file filename
39
(dotimes (_ 60) (insert "x")))
40
- (expect (cider-provide-file filename) :not :to-match "\n"))))
+ (expect (cider-provide-file filename) :not :to-match "\n")))
41
+ (it "can handle multibyte characters"
42
+ (let ((cider-sideloader-dir "/tmp")
43
+ (default-directory "/tmp")
44
+ (filename (make-temp-file "abc.clj")))
45
+ (with-temp-file filename
46
+ (insert "🍻"))
47
+ (expect (cider-provide-file filename) :to-equal "8J+Nuw=="))))
48
49
(provide 'cider-eval-tests)
0 commit comments