Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip test failing due to tx endpoint metadata bug
REST::Neo4p 0.4003 can't parse the metadata for entities returned from Neo4j < 3.5 via the transaction endpoint (unless the Neo4j::Driver agent is used). This change prevents that bug from breaking the test suite. To reproduce the bug (will trigger a "Can't call method on unblessed reference" error): REST::Neo4p->begin_work; (my $q = REST::Neo4p::Query->new('MATCH (n) RETURN n LIMIT 1'))->execute; print $q->fetch->[0]->id; Issues with the tx response format aren't new. The changelog for version 0.2220 included a fix for it, but the response format was updated in later Neo4j versions, forcing further changes. I believe the current iteration of the bug may have been introduced in 2077e4b.
- Loading branch information