-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
smartparens-auctex-latex-test.el
102 lines (88 loc) · 3.62 KB
/
smartparens-auctex-latex-test.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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")))