summaryrefslogtreecommitdiff
path: root/test/lisp/ses-tests.el
diff options
context:
space:
mode:
authorVincent Belaïche <vincentb1@users.sourceforge.net>2017-07-17 20:54:20 +0200
committerVincent Belaïche <vincentb1@users.sourceforge.net>2017-07-17 20:54:20 +0200
commit0083123499cc29e301c197218d3809b225675e57 (patch)
treeab320067f489e2c38f91a3e025b2b15e961d07ae /test/lisp/ses-tests.el
parent002d6abcc76a8a83e5ea191e6f8d6dbed6b714eb (diff)
downloademacs-0083123499cc29e301c197218d3809b225675e57.tar.gz
emacs-0083123499cc29e301c197218d3809b225675e57.tar.bz2
emacs-0083123499cc29e301c197218d3809b225675e57.zip
Fix relocation with named cell referred to by a one-symbol formula.
* lisp/ses.el (ses-replace-name-in-formula): Fix bug for it to work also with one symbol formulas. * test/lisp/ses-tests.el (ses-tests-renaming-cell-with-one-symbol-formula): Add new test for renaming with relocating a one symbol formula.
Diffstat (limited to 'test/lisp/ses-tests.el')
-rw-r--r--test/lisp/ses-tests.el22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/lisp/ses-tests.el b/test/lisp/ses-tests.el
index 196f7100721..add94ae98f6 100644
--- a/test/lisp/ses-tests.el
+++ b/test/lisp/ses-tests.el
@@ -106,6 +106,28 @@ renaming A1 to `foo' makes `foo' value equal to 2."
(should (equal (ses-cell-formula 1 0) '(1+ foo)))
(should (eq A2 2)))))
+(ert-deftest ses-tests-renaming-cell-with-one-symbol-formula ()
+ "Check that setting A1 to 1 and A2 to A1, and then renaming A1
+to `foo' makes `foo' value equal to 1. Then set A1 to 2 and check
+that `foo' becomes 2."
+ (let ((ses-initial-size '(3 . 1)))
+ (with-temp-buffer
+ (ses-mode)
+ (dolist (c '((0 0 1) (1 0 A1)))
+ (apply 'funcall-interactively 'ses-edit-cell c))
+ (ses-command-hook); deferred recalc
+ (ses-rename-cell 'foo (ses-get-cell 0 0))
+ (ses-command-hook); deferred recalc
+ (should-not (local-variable-p 'A1))
+ (should (eq foo 1))
+ (should (equal (ses-cell-formula 1 0) 'foo))
+ (should (eq A2 1))
+ (funcall-interactively 'ses-edit-cell 0 0 2)
+ (ses-command-hook); deferred recalc
+ (should (eq A2 2))
+ (should (eq foo 2)))))
+
+
;; ROW INSERTION TESTS
;; ======================================================================