Skip to content

Commit

Permalink
fixing various errors that stop the test running
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Jun 20, 2012
1 parent 018e3db commit f41d498
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Core/Charts/Test/Case/Lib/ChartDataManipulationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class ChartDataManipulationTest extends CakeTestCase {
'plugin.configs.config',
'plugin.themes.theme',
'plugin.routes.route',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',

'plugin.crons.cron'
);
Expand Down
6 changes: 3 additions & 3 deletions Core/Comments/Test/Case/Lib/CommentsEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ class CommentsEventsTest extends CakeTestCase {
'plugin.configs.config',
'plugin.themes.theme',
'plugin.routes.route',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',

'plugin.comments.comment',
'plugin.comments.comment_attribute'
'plugin.comments.infinitas_comment',
'plugin.comments.infinitas_comment_attribute'
);

public function startTest() {
Expand Down
2 changes: 1 addition & 1 deletion Core/Comments/Test/Case/Model/InfinitasCommentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class InfinitasCommentTest extends CakeTestCase {
'plugin.configs.config',
'plugin.themes.theme',
'plugin.routes.route',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',

'plugin.comments.infinitas_comment',
'plugin.comments.infinitas_comment_attribute'
Expand Down
4 changes: 2 additions & 2 deletions Core/Configs/Test/Case/Lib/ConfigsEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class ConfigsEventsTest extends CakeTestCase {
'plugin.configs.config',
'plugin.themes.theme',
'plugin.routes.route',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',

'plugin.categories.category',
'plugin.users.group',
Expand All @@ -20,6 +20,6 @@ public function endTest() {
}

public function testGenerateSiteMapData(){
$this->assertInjstanceOf('EventCore', $this->Event);
$this->assertInstanceOf('EventCore', $this->Event);
}
}
4 changes: 2 additions & 2 deletions Core/Contact/Test/Case/Controller/BranchesControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ class BranchesControllerTest extends CakeTestCase {
'plugin.modules.module',
'plugin.modules.module_position',
'plugin.modules.modules_route',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',
'plugin.blog.post',

'plugin.contact.branche',
'plugin.contact.branch',
'plugin.contact.contact',
'plugin.contact.address',
'plugin.users.user',
Expand Down
2 changes: 1 addition & 1 deletion Core/Contents/Test/Case/Lib/ContentsEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class ContentsEventsTest extends CakeTestCase {
'plugin.configs.config',
'plugin.themes.theme',
'plugin.routes.route',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',

'plugin.contents.global_category',
'plugin.users.group',
Expand Down
2 changes: 1 addition & 1 deletion Core/Contents/Test/Case/Model/GlobalCategoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class GlobalCategoryTest extends CakeTestCase {
var $fixtures = array(
'plugin.configs.config',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',
'plugin.contents.global_category',
'plugin.users.group',
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
App::uses('Upload.Upload', 'Model/Behavior');
App::uses('Filemanager.Upload', 'Model/Behavior');
App::uses('Folder', 'Utility');

class TestUpload extends CakeTestModel {
Expand All @@ -17,7 +17,7 @@ class TestUpload extends CakeTestModel {

class UploadBehaviorTest extends CakeTestCase {

var $fixtures = array('plugin.upload.upload');
var $fixtures = array('plugin.filemanager.upload');
var $TestUpload = null;
var $MockUpload = null;
var $data = array();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class EncryptableBehaviorTest extends CakeTestCase {

public $fixtures = array(
'plugin.configs.config',
'plugin.view_counter.view_count',
'plugin.view_counter.view_counter_view',

'plugin.contents.global_category',
'plugin.users.group',
Expand Down
2 changes: 1 addition & 1 deletion Test/Case/AppModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AppModelTest extends CakeTestCase {
'plugin.configs.config',
'plugin.themes.theme',
'plugin.routes.route',
'plugin.view_counter.view_count'
'plugin.view_counter.view_counter_view',
);
function startTest() {
$this->AppModel = new AppModel();
Expand Down

0 comments on commit f41d498

Please sign in to comment.