Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 402] [Versions 311 and 403]

(no description)

File Size: 186 lines (8 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class


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.