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.
15 lines
404 B
15 lines
404 B
#![cfg(test)]
|
|
|
|
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", &[])
|
|
}
|
|
|