diff options
author | Taylor R Campbell <campbell@mumble.net> | 2011-04-09 19:23:17 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2011-04-09 19:23:17 +0000 |
commit | 6c14694056158ee8fb86baeb0975fbd20e735ce3 (patch) | |
tree | 7489fea93446130d4450dbccddd0912a1c98712d | |
parent | e80ffcc1542260481551566d19116bdbd94fb90c (diff) |
Use `call-interactively' rather than `funcall' in `paredit-test'.
Ignore-this: 12e8ee22270320abed65e401d2f0b267
This more faithfully tests the behaviour human users will see, and it
lets us also use `current-prefix-arg', &c., to test more modes of the
commands.
darcs-hash:20110409192317-00fcc-5d0b0bf50b928d8adf5658afa3d63cdb788405ec
-rw-r--r-- | test.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,10 +47,10 @@ Four arguments: the paredit command, the text of the buffer (if (cond ((eq expected 'error) ;++ Check that there are no more expected states. (condition-case condition - (progn (funcall command) t) + (progn (call-interactively command) t) (error nil))) ((stringp expected) - (funcall command) + (call-interactively command) (insert ?\|) (not (string= expected (buffer-string)))) (t (error "Bad test expectation:" expected))) |