dadfb6e90c
After discussing it in the issue, we have agreed to apply the new phpunit_util::normalise_line_endings() method to all the remaining cases (within tests!) where the manual replacement was being done. This commits achieves that. Note that I've looked for both str_replace() and preg_replace() cases, but only the former had cases worth converting. All the later ones are different and cannot be replaced by the new utility method.
Question import/export formats
==============================
This directory contains plug-ins to supprt importing and exporting questions in
a variety of formats.
Each sub-module must contain at least a format.php file containing a class that
contains functions for reading, writing, importing and exporting questions.
For correct operation the class name must be based on the name of the plugin.
For example:
plugin: webct
class: class qformat_webct extends qformat_default {
Most of them are based on the class found in question/format.php.
See the comments therein for more information.