public function testPluginControllerLookupFail() {
		Dispatcher::config(array('classes' => array('router' => __CLASS__)));

		$this->expectException('/Controller some_invalid_plugin.Controller not found/');
		Dispatcher::run(new Request(array('url' => '/plugin')));
	}