Adding tests for and fixing the behavior of cake acl initdb it now correctly delegates to SchemaShell. Fixes #608

This commit is contained in:
Mark Story 2010-04-21 23:28:40 -04:00
parent 81edcdf431
commit 568e9d3a89
2 changed files with 14 additions and 2 deletions

View file

@ -379,7 +379,7 @@ class AclShell extends Shell {
* @access public
*/
function initdb() {
$this->Dispatch->args = array('schema', 'run', 'create', 'DbAcl');
$this->Dispatch->args = array('schema', 'create', 'DbAcl');
$this->Dispatch->dispatch();
}