Index: openacs-4/packages/acs-templating/tcl/test/date-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/test/date-procs.tcl,v diff -u -N -r1.5.2.3 -r1.5.2.4 --- openacs-4/packages/acs-templating/tcl/test/date-procs.tcl 25 Jun 2021 17:23:55 -0000 1.5.2.3 +++ openacs-4/packages/acs-templating/tcl/test/date-procs.tcl 28 Jun 2021 11:11:04 -0000 1.5.2.4 @@ -61,6 +61,28 @@ } } +aa_register_case -cats { + api + smoke + production_safe +} -procs { + template::util::negative +} util_negative { + Test template::util::negative proc + + @author Héctor Romojaro + @creation-date 28 June 2021 +} { + set negative_true {-1 -0,6} + set negative_false {"" 0 +1 lala} + foreach value $negative_true { + aa_true "Is $value negative?" [template::util::negative $value] + } + foreach value $negative_false { + aa_false "Is $value negative?" [template::util::negative $value] + } +} + # Local variables: # mode: tcl # tcl-indent-level: 4