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 ba7470d commit c766febCopy full SHA for c766feb
test/elpy-module-eldoc-test.el
@@ -9,7 +9,11 @@
9
(elpy-module-eldoc 'buffer-init)
10
11
(should eldoc-mode)
12
- (should (eq eldoc-documentation-function 'elpy-eldoc-documentation))))
+
13
+ (should
14
+ (if (boundp 'eldoc-documentation-functions)
15
+ (member 'elpy-eldoc-documentation eldoc-documentation-functions)
16
+ (eq eldoc-documentation-function 'elpy-eldoc-documentation)))))
17
18
(ert-deftest elpy-module-eldoc-buffer-stop ()
19
(elpy-testcase ()
0 commit comments