Index: openacs-4/packages/dotlrn-faq/tcl/test/dotlrn-faq-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-faq/tcl/test/Attic/dotlrn-faq-test-procs.tcl,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-faq/tcl/test/dotlrn-faq-test-procs.tcl 10 Sep 2019 09:20:40 -0000 1.1.2.1 @@ -0,0 +1,33 @@ +ad_library { + + Automated tests for the dotlrn-faq package. + + @author Héctor Romojaro + @creation-date 2019-09-10 + +} + +aa_register_case \ + -cats {api smoke production_safe} \ + -procs { + dotlrn_faq::package_key + dotlrn_faq::my_package_key + dotlrn_faq::applet_key + } \ + dotlrn_faq__keys { + + Simple test for the various dotlrn_faq::..._key procs. + + @author Héctor Romojaro + @creation-date 2019-09-10 +} { + aa_equals "Package key" "[dotlrn_faq::package_key]" "faq" + aa_equals "My Package key" "[dotlrn_faq::my_package_key]" "dotlrn-faq" + aa_equals "Applet key" "[dotlrn_faq::applet_key]" "dotlrn_faq" +} + +# Local variables: +# mode: tcl +# tcl-indent-level: 4 +# indent-tabs-mode: nil +# End: