-
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1202 from temyurchenko/master
fix some of the tests; partially addresses #1201
- Loading branch information
Showing
5 changed files
with
108 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
(require 'smartparens-latex) | ||
|
||
(ert-deftest sp-test-LaTeX-dont-insert-space-on-forward-slurp-where-not-necessary () | ||
(sp-test-with-temp-buffer "foo (|)(bar)(baz)" | ||
(LaTeX-mode) | ||
(sp-forward-slurp-sexp 2) | ||
(sp-buffer-equals "foo (|(bar)(baz))") | ||
(sp-forward-barf-sexp 2) | ||
(sp-buffer-equals "foo (|)(bar)(baz)"))) | ||
|
||
(ert-deftest sp-test-LaTeX-insert-space-on-forward-slurp-where-necessary () | ||
(sp-test-with-temp-buffer "foo (|bar)baz" | ||
(LaTeX-mode) | ||
(sp-forward-slurp-sexp) | ||
(sp-buffer-equals "foo (|bar baz)") | ||
(sp-forward-barf-sexp) | ||
(sp-buffer-equals "foo (|bar) baz"))) | ||
|
||
(ert-deftest sp-test-LaTeX-dont-insert-space-on-backward-slurp-where-not-necessary () | ||
(sp-test-with-temp-buffer "foo (bar)(baz)(|)" | ||
(LaTeX-mode) | ||
(sp-backward-slurp-sexp 2) | ||
(sp-buffer-equals "foo ((bar)(baz)|)") | ||
(sp-backward-barf-sexp 2) | ||
(sp-buffer-equals "foo (bar)(baz)(|)"))) | ||
|
||
(ert-deftest sp-test-LaTeX-insert-space-on-backward-slurp-where-necessary () | ||
(sp-test-with-temp-buffer "foo bar(baz|)" | ||
(LaTeX-mode) | ||
(sp-backward-slurp-sexp) | ||
(sp-buffer-equals "foo (bar baz|)") | ||
(sp-backward-barf-sexp) | ||
(sp-buffer-equals "foo bar (baz|)"))) | ||
|
||
(ert-deftest sp-test-LaTeX-navigate-single-quote-pair-backwards-at-opener () | ||
(sp-test-with-temp-buffer "\\foo{bar} `|foo bar'baz'" | ||
(LaTeX-mode) | ||
(should (equal (sp-get-thing t) | ||
'(:beg 11 :end 24 :op "`" :cl "'" :prefix "" :suffix ""))))) | ||
|
||
(ert-deftest sp-test-LaTeX-navigate-single-quote-pair-backwards-at-closer () | ||
(sp-test-with-temp-buffer "\\foo{bar} `foo bar'baz'|" | ||
(LaTeX-mode) | ||
(should (equal (sp-get-thing t) | ||
'(:beg 11 :end 24 :op "`" :cl "'" :prefix "" :suffix ""))))) | ||
|
||
;; SKIP: | ||
;; (ert-deftest sp-test-LaTeX-navigate-single-quote-pair-backwards-at-contraction () | ||
;; (sp-test-with-temp-buffer "\\foo{bar} `foo bar'|bar'" | ||
;; (LaTeX-mode) | ||
;; (should (equal (sp-get-thing t) | ||
;; '(:beg 16 :end 19 :op "" :cl "" :prefix "" :suffix ""))))) | ||
|
||
;; #820 | ||
(ert-deftest sp-test-LaTeX-do-not-fix-closing-delimiter-on-insert-when-inserting-more-than-one-char () | ||
"Some electric keys sometimes insert more than one character. | ||
In this case the behaviour is more complicated and we shouldn't | ||
try to fix the buffer. | ||
For example quote in LaTeX inserts two backticks which messes up | ||
with the search logic (if inserted one-by-one they would pair by | ||
thesmeves and would not break unrelated pair)" | ||
(sp-test-with-temp-buffer "quote: | $f' = 0$" | ||
(LaTeX-mode) | ||
(execute-kbd-macro "\"") | ||
(sp-buffer-equals "quote: ``|'' $f' = 0$"))) | ||
|
||
;; #990 | ||
(ert-deftest sp-test-LaTeX-do-parse-string-quotes-outside-math () | ||
(sp-test-with-temp-buffer "foo ``bar''| baz" | ||
(LaTeX-mode) | ||
(sp-backward-sexp) | ||
(sp-buffer-equals "foo |``bar'' baz"))) | ||
|
||
;; #990 | ||
(ert-deftest sp-test-LaTeX-dont-parse-string-quotes-in-math () | ||
(sp-test-with-temp-buffer "$foo ``bar''| baz$" | ||
(LaTeX-mode) | ||
(sp-backward-sexp) | ||
(sp-buffer-equals "$foo ``|bar'' baz$"))) | ||
|
||
;; #990 | ||
(ert-deftest sp-test-LaTeX-do-pair-string-quotes-outside-math () | ||
(sp-test-with-temp-buffer "foo | baz" | ||
(LaTeX-mode) | ||
(execute-kbd-macro "``") | ||
(sp-buffer-equals "foo ``|'' baz"))) | ||
|
||
;; #990 | ||
(ert-deftest sp-test-LaTeX-dont-pair-string-quotes-in-math () | ||
(sp-test-with-temp-buffer "$foo | baz$" | ||
(LaTeX-mode) | ||
(execute-kbd-macro "``") | ||
(sp-buffer-equals "$foo ``| baz$"))) | ||
|
||
;; #834 | ||
(ert-deftest sp-test-LaTeX-wrap-with-trigger () | ||
"A region should be wrapped with a pair if trigger key is pressed." | ||
(sp-test-with-temp-buffer "foo Mbar baz| bam" | ||
(LaTeX-mode) | ||
(execute-kbd-macro "\"") | ||
(sp-buffer-equals "foo ``bar baz''| bam"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters