aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-23 07:54:33 +0000
committerDavid Robillard <d@drobilla.net>2011-01-23 07:54:33 +0000
commita3c9e1dacb76cf0282d8419fa13a41d322046e60 (patch)
treeab46bd50bbf51994ab9779c698ebc35efa16aa01 /tests
parent983c964a11919f68f62d0a2193204789c27dc99c (diff)
downloadserd-a3c9e1dacb76cf0282d8419fa13a41d322046e60.tar.gz
serd-a3c9e1dacb76cf0282d8419fa13a41d322046e60.tar.bz2
serd-a3c9e1dacb76cf0282d8419fa13a41d322046e60.zip
Test language tags with hyphens.
Remove unused reader->err. git-svn-id: http://svn.drobilla.net/serd/trunk@42 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'tests')
-rw-r--r--tests/test-lang.out1
-rw-r--r--tests/test-lang.ttl1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-lang.out b/tests/test-lang.out
index 76761505..a75749b0 100644
--- a/tests/test-lang.out
+++ b/tests/test-lang.out
@@ -1,2 +1,3 @@
<http://example.org/test-lang#thing> <http://example.org/test-lang#greeting> "Hello"@en .
+<http://example.org/test-lang#thing> <http://example.org/test-lang#greeting> "Howdy"@en-us .
<http://example.org/test-lang#thing> <http://example.org/test-lang#greeting> "Bonjour"@fr .
diff --git a/tests/test-lang.ttl b/tests/test-lang.ttl
index 407cc6e6..a4a6c77f 100644
--- a/tests/test-lang.ttl
+++ b/tests/test-lang.ttl
@@ -1,4 +1,5 @@
@prefix : <http://example.org/test-lang#> .
:thing :greeting "Hello"@en ;
+ :greeting "Howdy"@en-us ;
:greeting "Bonjour"@fr .