Index: openacs-4/packages/acs-core-docs/tcl/test/acs-core-docs-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/tcl/test/Attic/acs-core-docs-procs.tcl,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/acs-core-docs/tcl/test/acs-core-docs-procs.tcl 19 Aug 2020 15:57:13 -0000 1.1.2.1 @@ -0,0 +1,33 @@ +ad_library { + Automated tests for the acs-core-docs package. + + @author Héctor Romojaro + @creation-date 2020-08-19 + @cvs-id $Id: acs-core-docs-procs.tcl,v 1.1.2.1 2020/08/19 15:57:13 hectorr Exp $ +} + +aa_register_case -procs { + ad_core_docs_uninstalled_packages + } -cats { + api + production_safe + } dd_core_docs_uninstalled_packages { + Test ad_core_docs_uninstalled_packages proc. +} { + # + # List of uninstalled packages + # + set non_installed [ad_core_docs_uninstalled_packages] + # + # Check if the packages are indeed not installed + # + dict for {key name} $non_installed { + aa_false "$key is installed" "[apm_package_installed_p $key]" + } +} + +# Local variables: +# mode: tcl +# tcl-indent-level: 4 +# indent-tabs-mode: nil +# End: