CCK 6.x-3.x
===========
+- Issue #1401950 by KarenS, Add empty test module with dependency on schema to make schema available to testbot.
- Issue #1363036 by markdorison, Fix Class 'ContentCrudTestCase' not found message in tests.
- #1097548 by DeFr: Fixed warning on node forms for multigroups without any required fields.
*/
function setUp() {
$args = func_get_args();
- $modules = array_merge(array('content', 'schema', 'text'), $args);
+ $modules = array_merge(array('content_test', 'content', 'schema', 'text'), $args);
call_user_func_array(array('parent','setUp'), $modules);
module_load_include('inc', 'content', 'includes/content.crud');
}
--- /dev/null
+name = Content Test
+description = Test module for CCK.
+package = CCK
+core = 6.x
+dependencies[] = schema
+hidden = TRUE
+files[] = content_test.module
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * @file
+ * A module to use in tests.
+ */
+// No code here, currently used to create a dependency on schema module.