diff options
author | dgp <dgp@users.sourceforge.net> | 2013-03-21 14:28:59 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-03-21 14:28:59 (GMT) |
commit | f9a1022456da2832c6a6609935e9ab40e10a8b22 (patch) | |
tree | 553365144a6d50b02e653b4279f40544aa7a40d0 /tests | |
parent | 4072ab92c6098e4cebd7922e2118252a9a594f30 (diff) | |
download | tcl-f9a1022456da2832c6a6609935e9ab40e10a8b22.zip tcl-f9a1022456da2832c6a6609935e9ab40e10a8b22.tar.gz tcl-f9a1022456da2832c6a6609935e9ab40e10a8b22.tar.bz2 |
2102614 Add ensemble indexing support to [auto_mkindex]. Thanks Brian Griffin.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/autoMkindex.test | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/autoMkindex.test b/tests/autoMkindex.test index be1e3e6..c105e95 100644 --- a/tests/autoMkindex.test +++ b/tests/autoMkindex.test @@ -251,6 +251,37 @@ test autoMkindex-3.3 {auto_mkindex_parser::command} {knownBug} { list [lvalue $::result *mycmd4*] [lvalue $::result *mycmd5*] [lvalue $::result *mycmd6*] } "{::buried::mycmd4 $element} {::buried::mycmd5 $element} {mycmd6 $element}" +makeFile { + +namespace eval wok { + namespace ensemble create -subcommands {commands vars} + + proc commands {{pattern *}} { + puts [join [lsort -dictionary [info commands $pattern]] \n] + } + + proc vars {{pattern *}} { + puts [join [lsort -dictionary [info vars $pattern]] \n] + } + +} + +} ensemblecommands.tcl + +test autoMkindex-3.3 {ensemble commands in tclIndex} { + file delete tclIndex + auto_mkindex . ensemblecommands.tcl + set f [open tclIndex r] + set dat [list] + foreach r [split [string trim [read $f]] "\n"] { + if {[string match {set auto_index*} $r]} { + lappend dat $r + } + } + set result [lsort $dat] + close $f + set result +} {{set auto_index(::wok::commands) [list source [file join $dir ensemblecommands.tcl]]} {set auto_index(::wok::vars) [list source [file join $dir ensemblecommands.tcl]]} {set auto_index(wok) [list source [file join $dir ensemblecommands.tcl]]}} makeDirectory pkg makeFile { |