Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
389 B
13 lines
389 B
use anyhow::Result;
|
|
use oxigraph_testsuite::check_testsuite;
|
|
|
|
#[cfg(not(windows))] // Tests don't like git auto "\r\n" on Windows
|
|
#[test]
|
|
fn serd_good_testsuite() -> Result<()> {
|
|
check_testsuite("http://drobilla.net/sw/serd/test/good/manifest.ttl", &[])
|
|
}
|
|
|
|
#[test]
|
|
fn serd_bad_testsuite() -> Result<()> {
|
|
check_testsuite("http://drobilla.net/sw/serd/test/bad/manifest.ttl", &[])
|
|
}
|
|
|