summaryrefslogtreecommitdiffstats
path: root/tests/cmdIL.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2006-11-09 15:19:01 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2006-11-09 15:19:01 (GMT)
commitb07bb89f2a73a18a69b6666c3484f3e2271f53bf (patch)
treec99380de0e89bc86e1accd8eef22508a2650412a /tests/cmdIL.test
parente33a0caada7278a17cac044aaf753e624489623d (diff)
downloadtcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.zip
tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.tar.gz
tcl-b07bb89f2a73a18a69b6666c3484f3e2271f53bf.tar.bz2
Implemented [lreverse] from TIP#272
Diffstat (limited to 'tests/cmdIL.test')
-rw-r--r--tests/cmdIL.test15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/cmdIL.test b/tests/cmdIL.test
index a4099a8..c2fd650 100644
--- a/tests/cmdIL.test
+++ b/tests/cmdIL.test
@@ -8,7 +8,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: cmdIL.test,v 1.28 2006/10/09 19:15:44 msofer Exp $
+# RCS: @(#) $Id: cmdIL.test,v 1.29 2006/11/09 15:19:03 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -724,6 +724,19 @@ test cmdIL-6.26 {lassign command - shimmering protection} -body {
rename testLassign {}
}
+test cmdIL-7.1 {lreverse command} -body {
+ lreverse
+} -returnCodes error -result "wrong # args: should be \"lreverse list\""
+test cmdIL-7.2 {lreverse command} -body {
+ lreverse a b
+} -returnCodes error -result "wrong # args: should be \"lreverse list\""
+test cmdIL-7.3 {lreverse command} -body {
+ lreverse "not \{a list"
+} -returnCodes error -result {unmatched open brace in list}
+test cmdIL-7.4 {lreverse command} {
+ lreverse {a b {c d} e f}
+} {f e {c d} b a}
+
# cleanup
::tcltest::cleanupTests
return