public function RequestMatcherTest::testMethodFixtures

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/RequestMatcherTest.php, line 34

Class

RequestMatcherTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testMethodFixtures() {
  return array(
    array(
      'get',
      'get',
      true,
    ),
    array(
      'get',
      array(
        'get',
        'post',
      ),
      true,
    ),
    array(
      'get',
      'post',
      false,
    ),
    array(
      'get',
      'GET',
      true,
    ),
    array(
      'get',
      array(
        'GET',
        'POST',
      ),
      true,
    ),
    array(
      'get',
      'POST',
      false,
    ),
  );
}