diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-04 10:38:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-04 10:38:47 +0000 |
commit | 1883e93f149c5da0cafaaad80079eefa47d024cb (patch) | |
tree | 39f4b6c0fe4b292832f5300e90d97d7c263c2917 /modules | |
parent | 17df77c3a40200ef456f6ab8c5a3528dd0278741 (diff) | |
download | brdo-1883e93f149c5da0cafaaad80079eefa47d024cb.tar.gz brdo-1883e93f149c5da0cafaaad80079eefa47d024cb.tar.bz2 |
- Patch #352872 by Damien Tournoud: clean-up xmlrpc() wrapper.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/blogapi/blogapi.test | 3 | ||||
-rw-r--r-- | modules/simpletest/tests/xmlrpc.test | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/blogapi/blogapi.test b/modules/blogapi/blogapi.test index 525e5365e..57404d283 100644 --- a/modules/blogapi/blogapi.test +++ b/modules/blogapi/blogapi.test @@ -12,6 +12,9 @@ class BlogAPITestCase extends DrupalWebTestCase { function setUp() { parent::setUp('blog', 'blogapi', 'taxonomy'); + + // Force loading the xmlrpc.inc to have the xmlrpc() function. + drupal_function_exists('xmlrpc'); } /** diff --git a/modules/simpletest/tests/xmlrpc.test b/modules/simpletest/tests/xmlrpc.test index ce6a053d2..fb94911ad 100644 --- a/modules/simpletest/tests/xmlrpc.test +++ b/modules/simpletest/tests/xmlrpc.test @@ -12,6 +12,9 @@ class XMLRPCValidator1IncTestCase extends DrupalWebTestCase { function setUp() { parent::setUp('xmlrpc_test'); + + // Force loading the xmlrpc.inc to have the xmlrpc() function. + drupal_function_exists('xmlrpc'); } /** @@ -132,6 +135,9 @@ class XMLRPCMessagesTestCase extends DrupalWebTestCase { function setUp() { parent::setUp('xmlrpc_test'); + + // Force loading the xmlrpc.inc to have the xmlrpc() function. + drupal_function_exists('xmlrpc'); } /** |