Codeception\Module\WPDb::seePostMetaInDatabase PHP Method

seePostMetaInDatabase() public method

If the meta_value is an object or an array then the serialized value will be checked for.
public seePostMetaInDatabase ( array $criteria )
$criteria array An array of search criteria.
    public function seePostMetaInDatabase(array $criteria)
    {
        $tableName = $this->grabPrefixedTableNameFor('postmeta');
        if (!empty($criteria['meta_value'])) {
            $criteria['meta_value'] = $this->maybeSerialize($criteria['meta_value']);
        }
        $this->seeInDatabase($tableName, $criteria);
    }
WPDb