Skip to content

Commit

Permalink
Remove references to Crud plugin. Closes #4
Browse files Browse the repository at this point in the history
  • Loading branch information
beporter committed Jul 22, 2015
1 parent 007e407 commit 6943445
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
require ROOT . '/vendor/autoload.php';
require CORE_PATH . 'config/bootstrap.php';

Cake\Core\Configure::write('App', ['namespace' => 'Crud\Test\App']);
Cake\Core\Configure::write('App', ['namespace' => 'CreatorModifier']);
Cake\Core\Configure::write('debug', true);

$TMP = new \Cake\Filesystem\Folder(TMP);
Expand All @@ -52,14 +52,14 @@
],
'_cake_core_' => [
'className' => 'File',
'prefix' => 'crud_myapp_cake_core_',
'prefix' => 'creatormodifier_cake_core_',
'path' => CACHE . 'persistent/',
'serialize' => true,
'duration' => '+10 seconds'
],
'_cake_model_' => [
'className' => 'File',
'prefix' => 'crud_my_app_cake_model_',
'prefix' => 'creatormodifier_cake_model_',
'path' => CACHE . 'models/',
'serialize' => 'File',
'duration' => '+10 seconds'
Expand All @@ -71,8 +71,6 @@
'defaults' => 'php'
]);

Cake\Core\Plugin::load('Crud', ['path' => ROOT . DS, 'autoload' => true]);

Cake\Routing\DispatcherFactory::add('Routing');
Cake\Routing\DispatcherFactory::add('ControllerFactory');

Expand Down

0 comments on commit 6943445

Please sign in to comment.