Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.

Differences Between: [Versions 311 and 402] [Versions 400 and 402] [Versions 401 and 402]

(no description)

File Size: 174 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.