Index: openacs-4/packages/scorm-importer/tcl/test/scorm-importer-test-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/scorm-importer/tcl/test/scorm-importer-test-procs.tcl,v
diff -u
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ openacs-4/packages/scorm-importer/tcl/test/scorm-importer-test-procs.tcl	20 Apr 2023 14:57:01 -0000	1.1
@@ -0,0 +1,20 @@
+ad_library {
+
+    Automated tests.
+
+}
+
+aa_register_case -cats {
+    smoke production_safe
+} -procs {
+    util::which
+} scorm_importer_exec_dependencies {
+    Test external command dependencies for this package.
+} {
+    foreach cmd [list \
+                     [::util::which tar] \
+                     [::util::which unzip] \
+                    ] {
+        aa_true "'$cmd' is executable" [file executable $cmd]
+    }
+}