Extends
lithium\test\UnitSource
public function testApplyRulesLibraryKeyNamespacing() {
$params = array('library' => 'li3_test', 'controller' => 'test', 'action' => 'test');
$expected = array(
'library' => 'li3_test', 'controller' => 'li3_test.Test', 'action' => 'test'
);
$this->assertEqual($expected, Dispatcher::applyRules($params));
}