From 0b9a92b9a86ee23f65a26386150b26f5f252debc Mon Sep 17 00:00:00 2001 From: zYne Date: Sat, 10 Feb 2007 20:53:42 +0000 Subject: [PATCH] --- tests/Export/MysqlTestCase.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/Export/MysqlTestCase.php b/tests/Export/MysqlTestCase.php index b3d8aafc5..55d2cf288 100644 --- a/tests/Export/MysqlTestCase.php +++ b/tests/Export/MysqlTestCase.php @@ -194,6 +194,19 @@ class Doctrine_Export_Mysql_TestCase extends Doctrine_UnitTestCase $this->assertEqual($this->adapter->pop(), 'CREATE TABLE mysql_test_record (name TEXT, code BIGINT, PRIMARY KEY(name, code)) ENGINE = INNODB'); } + public function testUnknownIndexSortingAttributeThrowsException() + { + $fields = array('id' => array('sorting' => 'ASC'), + 'name' => array('sorting' => 'unknown')); + + try { + $this->export->getIndexFieldDeclarationList($fields); + $this->fail(); + } catch(Doctrine_Export_Exception $e) { + $this->pass(); + } + } + } class MysqlTestRecord extends Doctrine_Record {