Refs #376
This commit is contained in:
parent
1fcddf7252
commit
11f9940db2
@ -66,6 +66,18 @@ class Doctrine_Enum_TestCase extends Doctrine_UnitTestCase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testEnumFetchArray() {
|
||||||
|
$q = new Doctrine_Query();
|
||||||
|
$q->select('e.*')
|
||||||
|
->from('EnumTest e')
|
||||||
|
->limit(1);
|
||||||
|
$ret = $q->execute(array(), Doctrine::FETCH_ARRAY);
|
||||||
|
if (is_numeric($ret[0]['status']))
|
||||||
|
{
|
||||||
|
$this->fail();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public function testInAndNotIn()
|
public function testInAndNotIn()
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user