Closed Wilfred closed 6 years ago
Before:
(ert-deftest helpful--format-docstring () "Ensure we create links in docstrings." (helpful--format-docstring "foo `message'."))
After:
(let ((formatted (helpful--format-docstring "foo `message'."))) (ert-deftest helpful--format-docstring () "Ensure we create links in docstrings." formatted))
Expected:
(ert-deftest helpful--format-docstring () "Ensure we create links in docstrings." (let ((formatted (helpful--format-docstring "foo `message'."))) formatted))
Before:
After:
Expected: