You are here

public function SessionTest::provideResponseHeader in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/tests/SessionTest.php \Behat\Mink\Tests\SessionTest::provideResponseHeader()

File

vendor/behat/mink/tests/SessionTest.php, line 145

Class

SessionTest

Namespace

Behat\Mink\Tests

Code

public function provideResponseHeader() {
  return array(
    array(
      'test',
      'Mink',
      array(
        'Mink' => 'test',
      ),
    ),
    array(
      'test',
      'mink',
      array(
        'Mink' => 'test',
      ),
    ),
    array(
      'test',
      'Mink',
      array(
        'mink' => 'test',
      ),
    ),
    array(
      'test',
      'Mink',
      array(
        'Mink' => array(
          'test',
          'test2',
        ),
      ),
    ),
    array(
      null,
      'other',
      array(
        'Mink' => 'test',
      ),
    ),
  );
}