summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabián Ezequiel Gallina <fgallina@gnu.org>2015-01-27 00:35:07 -0300
committerFabián Ezequiel Gallina <fgallina@gnu.org>2015-01-27 00:35:07 -0300
commitfd4e65e4ae76eb59a990fc72bce791a50e494338 (patch)
tree6986379a7e4c8589023ff24bb11cd964051c4c72
parent5485e3e5b28f82b46d139c63b8ab77ed1d7d61c9 (diff)
downloademacs-fd4e65e4ae76eb59a990fc72bce791a50e494338.tar.gz
Added missing test for previous commit
-rw-r--r--test/automated/python-tests.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/automated/python-tests.el b/test/automated/python-tests.el
index 5b77a1db49a..5bddfe845ed 100644
--- a/test/automated/python-tests.el
+++ b/test/automated/python-tests.el
@@ -2089,6 +2089,23 @@ def f():
(python-nav-backward-up-list)
(should (looking-at "def f():"))))
+(ert-deftest python-indent-dedent-line-backspace-1 ()
+ "Check de-indentation on first call. Bug#18319."
+ (python-tests-with-temp-buffer
+ "
+if True:
+ x ()
+ if False:
+"
+ (python-tests-look-at "if False:")
+ (call-interactively #'python-indent-dedent-line-backspace)
+ (should (zerop (current-indentation)))
+ ;; XXX: This should be a call to `undo' but it's triggering errors.
+ (insert " ")
+ (should (= (current-indentation) 4))
+ (call-interactively #'python-indent-dedent-line-backspace)
+ (should (zerop (current-indentation)))))
+
;;; Shell integration