use shacl_validation::shacl_processor::ShaclValidationMode;
use crate::TestSuiteError;
use crate::test;
const PATH: &str = "tests/data-shapes/data-shapes-test-suite/tests/core/complex/";
#[test]
#[ignore]
fn personexample() -> Result<(), Box<TestSuiteError>> {
let path = format!("{}/{}.ttl", PATH, "personexample");
test(path, ShaclValidationMode::Native)
}
#[test]
fn shacl_shacl_data_shapes() -> Result<(), Box<TestSuiteError>> {
let path = format!("{}/{}.ttl", PATH, "shacl-shacl-data-shapes");
test(path, ShaclValidationMode::Native)
}
#[test]
#[ignore]
fn shacl_shacl() -> Result<(), Box<TestSuiteError>> {
let path = format!("{}/{}.ttl", PATH, "shacl-shacl");
test(path, ShaclValidationMode::Native)
}