You are here

function PathfilterTestCase::testNoCleanURLs in Path Filter 6.2

Same name and namespace in other branches
  1. 7 tests/pathfilter.test \PathfilterTestCase::testNoCleanURLs()

test with clean URL's disabled

File

tests/pathfilter.test, line 135
Tests for Path Filter

Class

PathfilterTestCase

Code

function testNoCleanURLs() {
  variable_set('clean_url', 0);
  $this
    ->testInternalRelative();
  $this
    ->testInternalAbsolute();
  $this
    ->testFiles();
}