protected function DrupalWebTestCase::drupalGetAJAX

Retrieve a Drupal path or an absolute path and JSON decode the result.

4 calls to DrupalWebTestCase::drupalGetAJAX()

File

drupal/modules/simpletest/drupal_web_test_case.php, line 2000

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function drupalGetAJAX($path, array $options = array(), array $headers = array()) {
  return drupal_json_decode($this
    ->drupalGet($path, $options, $headers));
}