Differences Between: [Versions 400 and 402] [Versions 400 and 403]
(no description)
File Size: | 186 lines (8 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
mustache_helper_collection_test:: (4 methods):
get_strip_disallowed_helpers_testcases()
test_strip_disallowed_helpers()
test_disallowed_helpers_disabled_during_execution()
test_deprecated_strip_blacklisted_helpers()
Class: mustache_helper_collection_test - X-Ref
Unit tests for the mustache_helper_collection class.get_strip_disallowed_helpers_testcases() X-Ref |
Test cases to confirm that disallowed helpers are stripped from the source text by the helper before being passed to other another helper. This prevents nested calls to helpers. |
test_strip_disallowed_helpers($disallowed, $input, $expected) X-Ref |
Test that the mustache_helper_collection class correctly strips param: string[] $disallowed The list of helpers to strip param: string $input The input string for the helper param: string $expected The expected output of the string after disallowed strip |
test_disallowed_helpers_disabled_during_execution() X-Ref |
Test that the disallowed helpers are disabled during the execution of other helpers. Any allowed helper should still be available to call during the execution of a helper. |
test_deprecated_strip_blacklisted_helpers() X-Ref |
Test that calling deprecated method strip_blacklisted_helpers() still works and shows developer debugging. |