| 1 |
<?php |
<?php |
| 2 |
// $Id: drupal_web_test_case.php,v 1.44 2008/09/20 07:35:53 webchick Exp $ |
// $Id: drupal_web_test_case.php,v 1.45 2008/09/20 20:22:24 webchick Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* Test case for typical Drupal tests. |
* Test case for typical Drupal tests. |
| 691 |
|
|
| 692 |
// Add the specified modules to the list of modules in the default profile. |
// Add the specified modules to the list of modules in the default profile. |
| 693 |
$args = func_get_args(); |
$args = func_get_args(); |
| 694 |
$modules = array_unique(array_merge(drupal_verify_profile('default', 'en'), $args)); |
$modules = array_unique(array_merge(drupal_get_profile_modules('default', 'en'), $args)); |
| 695 |
drupal_install_modules($modules); |
drupal_install_modules($modules); |
| 696 |
|
|
| 697 |
// Because the schema is static cached, we need to flush |
// Because the schema is static cached, we need to flush |