-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
-
3.6.7, 3.7.3, 3.8
-
MOODLE_36_STABLE, MOODLE_37_STABLE, MOODLE_38_STABLE
This was discovered while working on MDL-64531, where we wanted a PHPUNIT test to test the behaviour of a function with AJAX_SCRIPT true and false.
Also, it is the case that wherever we access these constants in the code, we have duplicated logic like (defined('PHPUNIT_TEST') && PHPUNIT_TEST).
I suggest we add a wrapper for this, like:
core_script_type::is('PHPUNIT_TEST')
This should reduce duplicated logic, and allow these things to be overridden during unit tests.
As well as coding this new mechanism, all the existing reference to the bare constants should be updated.
- Discovered while testing
-
MDL-64531 Delete quiz JSON error if question category deleted
- Closed