summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test.el23
1 files changed, 22 insertions, 1 deletions
diff --git a/test.el b/test.el
index cfbe678..62f8f61 100644
--- a/test.el
+++ b/test.el
@@ -80,7 +80,6 @@ Four arguments: the paredit command, the text of the buffer
examples)))))
;++ Test `paredit-open-...' with the region active.
-;++ Test `paredit-open-...' with prefix arguments.
(paredit-test-bracketed '((paredit-open-round ?\( ?\))
(paredit-open-square ?\[ ?\])
@@ -98,6 +97,28 @@ Four arguments: the paredit command, the text of the buffer
("foo|" "foo (|)")
("|foo" "(|) foo")))
+(let ((current-prefix-arg 1))
+ (paredit-test-bracketed '((paredit-open-round ?\( ?\))
+ (paredit-open-square ?\[ ?\])
+ (paredit-open-curly ?\{ ?\})
+ ;; (paredit-open-angled ?\< ?\>)
+ )
+ '(("(foo |bar baz)" "(foo (|bar) baz)")
+ ("(x |;y\n z\n w)"
+ "(x (| ;y\n z)\n w)"))))
+
+(let ((current-prefix-arg '(4)))
+ (paredit-test-bracketed '((paredit-open-round ?\( ?\))
+ (paredit-open-square ?\[ ?\])
+ (paredit-open-curly ?\{ ?\})
+ ;; (paredit-open-angled ?\< ?\>)
+ )
+ '(("(foo |bar baz)" "(foo (|bar baz))")
+ ("(x |;y\n z\n w)"
+ "(x (| ;y\n z\n w))")
+ ("foo |bar baz" "foo (|bar baz)")
+ ("foo\n|bar\nbaz\n;quux\n" "foo\n(|bar\n baz)\n;quux\n"))))
+
(paredit-test-bracketed '((paredit-close-round ?\( ?\))
(paredit-close-square ?\[ ?\])
(paredit-close-curly ?\{ ?\})