You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hmm, I am puzzled right now. This was a test that was added rather late in the process, at a time where the WG was basically out of time. From my current understanding the paths are ill-formed because they are both lists and inverse paths yet all these path types must be disjoint. If my interpretation is correct then the test result should be undefined, and the tests not be in the test suite.
Hi,
I'm working on implementing the SHACL Test Suite for rdf-validate-shacl and am having issues with the two "strange path" tests.
The tests define the following expected resultPath:
sh:resultPath ( ex:p ex:q ) ;
As far as I know, the spec doesn't specify how to handle these weird paths, so I don't understand why the extraneous
inversePath
is stripped out.My ValidationReport graph contains
sh:resultPath [ rdf:first ex:p ; rdf:rest [ rdf:first ex:q ; rdf:rest rdf:nil ] ; sh:inversePath ex:p ] ;
(copied directly from the shape'ssh:path
). Shouldn't this be valid?The text was updated successfully, but these errors were encountered: