FIX: Added test to BaseSubsiteTest to prevent PHPUnit warnings

This commit is contained in:
Sam Minnee 2014-02-18 18:10:43 +13:00
parent c1efccfe6c
commit fe3537afc0
1 changed files with 8 additions and 1 deletions

View File

@ -10,4 +10,11 @@ class BaseSubsiteTest extends SapphireTest {
return $obj;
}
}
/**
* Tests the initial state of disable_subsite_filter
*/
function testDisableSubsiteFilter() {
$this->assertFalse(Subsite::$disable_subsite_filter);
}
}