added test for findAndModify if no item in collection and test for eval

This commit is contained in:
Anton Grebnev
2012-06-05 13:52:39 +04:00
parent c0fa542b3c
commit d5ae133478
3 changed files with 39 additions and 3 deletions

View File

@ -245,10 +245,10 @@ class MongoStatementTest extends PHPUnit_Framework_TestCase
$this->request
->expects($this->once())
->method('execute')
->will($this->returnValue(array('some' => 'val')));
->will($this->returnValue(array('retval' => 'val')));
$this->stmt->execute();
$this->assertFalse($this->stmt->fetch());
$this->assertEquals('val', $this->stmt->fetch());
}
/**