lithium\tests\integration\data\MongoDbTest::testIterateOverEmptyResultSet PHP Method

testIterateOverEmptyResultSet() public method

    public function testIterateOverEmptyResultSet()
    {
        $data = Galleries::find('all', array('conditions' => array('name' => 'no match')));
        $result = next($data);
        $this->assertNull($result);
    }