Index: openacs-4/packages/acs-templating/tcl/test/head-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/test/head-test-procs.tcl,v diff -u -N -r1.2 -r1.2.2.1 --- openacs-4/packages/acs-templating/tcl/test/head-test-procs.tcl 22 Jul 2018 11:37:20 -0000 1.2 +++ openacs-4/packages/acs-templating/tcl/test/head-test-procs.tcl 31 Mar 2020 19:26:06 -0000 1.2.2.1 @@ -1,7 +1,7 @@ ad_library { - + Tests for adp parsing - + @author Gustaf Neumann @creation-date 2018-03-09 } @@ -24,29 +24,29 @@ template::head::includes -container a -parts {b c} template::head::includes -container e -parts {f g} - aa_equals "is a already included" [template::head::included_p a] 0 - aa_equals "is b already included" [template::head::included_p b] 1 + aa_equals "is 'a' already included" [template::head::included_p a] 0 + aa_equals "is 'b' already included" [template::head::included_p b] 1 # # Flush one container via flush_link; the contained elements # should be flushed as well. # template::head::flush_link -href a -rel stylesheet - aa_equals "is a already included" [template::head::included_p a] 0 - aa_equals "is b already included" [template::head::included_p b] 0 + aa_equals "is 'a' already included" [template::head::included_p a] 0 + aa_equals "is 'b' already included" [template::head::included_p b] 0 - aa_equals "is e already included" [template::head::included_p e] 0 - aa_equals "is f already included" [template::head::included_p f] 1 + aa_equals "is 'e' already included" [template::head::included_p e] 0 + aa_equals "is 'f' already included" [template::head::included_p f] 1 # # Flush the second container via flush_script; the contained # elements should be flushed as well. # template::head::flush_script -src e - aa_equals "is e already included" [template::head::included_p e] 0 - aa_equals "is f already included" [template::head::included_p f] 0 + aa_equals "is 'e' already included" [template::head::included_p e] 0 + aa_equals "is 'f' already included" [template::head::included_p f] 0 }