Hi all, I know it's not related to Phalcon on it's own, but I'm having a problem with codeception Phalcon2 Module. I make it work to test DB using the ORM part, for example:

$user = $this->tester->haveRecord('User', ['name' => 'John');

It's working ok, some test reflect that the user was inserted on database. But I can't make to work the

$this->tester->seeRecord('User', ['name'=>'John'])

the seeRecord method does not exists. Any clue?