closes #6142, shows Auth works as expected with camelCased actions

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8065 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
gwoo 2009-02-27 16:17:58 +00:00
parent 811eb90d87
commit b8d21c6c2c

View file

@ -282,6 +282,15 @@ class AuthTestController extends Controller {
function add() { function add() {
echo "add"; echo "add";
} }
/**
* add method
*
* @access public
* @return void
*/
function camelCase() {
echo "camelCase";
}
/** /**
* redirect method * redirect method
* *
@ -557,7 +566,13 @@ class AuthTest extends CakeTestCase {
$this->Controller->Session->del('Auth'); $this->Controller->Session->del('Auth');
$result = $this->Controller->Auth->startup($this->Controller); $result = $this->Controller->Auth->startup($this->Controller);
$this->assertFalse($result);
$this->assertTrue($this->Controller->Session->check('Message.auth')); $this->assertTrue($this->Controller->Session->check('Message.auth'));
$this->Controller->params = Router::parse('auth_test/camelCase');
$result = $this->Controller->Auth->startup($this->Controller);
$this->assertFalse($result);
} }
/** /**
* testAuthorizeController method * testAuthorizeController method