From af16edfedda1d904d3485e9cf747bbb2a78bd132 Mon Sep 17 00:00:00 2001 From: Joshua Sherman Date: Fri, 17 Jan 2014 13:16:37 -0500 Subject: [PATCH] Dropped index hint tests --- tests/classes/ModelTest.php | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/tests/classes/ModelTest.php b/tests/classes/ModelTest.php index a6ba724..3a2bd86 100644 --- a/tests/classes/ModelTest.php +++ b/tests/classes/ModelTest.php @@ -176,30 +176,6 @@ class ModelTest extends PHPUnit_Framework_TestCase ]); } - public function testIndexHintsString() - { - $model = new MockModelWithoutColumns([ - 'conditions' => ['pickles.id' => 1], - 'hints' => 'is_deleted', - ]); - } - - public function testIndexHintsArray() - { - $model = new MockModelWithoutColumns([ - 'conditions' => ['pickles.id' => 1], - 'hints' => ['is_deleted'], - ]); - } - - public function testIndexHintsMultiple() - { - $model = new MockOtherModel([ - 'conditions' => ['id' => 1], - 'hints' => ['IGNORE INDEX' => ['pickle_id', 'is_deleted']], - ]); - } - public function testFieldValues() { $model = new MockModel('all');