diff options
-rw-r--r-- | tests/good/qualify-in.ttl | 3 | ||||
-rw-r--r-- | tests/good/qualify-out.ttl | 5 | ||||
-rw-r--r-- | wscript | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/tests/good/qualify-in.ttl b/tests/good/qualify-in.ttl new file mode 100644 index 00000000..d938b7bd --- /dev/null +++ b/tests/good/qualify-in.ttl @@ -0,0 +1,3 @@ +@prefix eg: <http://example.org/> . + +<http://example.org/s> <http://example.org/p> <http://example.org/o> . diff --git a/tests/good/qualify-out.ttl b/tests/good/qualify-out.ttl new file mode 100644 index 00000000..97f67a53 --- /dev/null +++ b/tests/good/qualify-out.ttl @@ -0,0 +1,5 @@ +@prefix eg: <http://example.org/> . + +eg:s + eg:p eg:o . + @@ -430,6 +430,7 @@ def test(ctx): True, name=in_name + '-check') test_ttl('base', 'base') + test_ttl('qualify-in', 'qualify-out') nul = os.devnull autowaf.run_tests(ctx, APPNAME, [ |