Skip to content

Commit

Permalink
Add (skipping) test for unresolved issue #161
Browse files Browse the repository at this point in the history
  • Loading branch information
gjhiggins committed Mar 27, 2012
1 parent c6cd10f commit 45cc9f1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions test/test_issue161.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
from unittest import TestCase
from rdflib.graph import ConjunctiveGraph
from nose.exc import SkipTest

class EntityTest(TestCase):

def test_turtle_namespace_prefixes(self):
raise SkipTest('Skipping: Turtle serializer preserves n3 prefixes (eg. "_9") that violate Turtle syntax.')
g = ConjunctiveGraph()
n3 = \
"""
@prefix _9: <http://data.linkedmdb.org/resource/movie/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://data.linkedmdb.org/resource/director/1> a
<http://data.linkedmdb.org/resource/movie/director>;
rdfs:label "Cecil B. DeMille (Director)";
_9:director_name "Cecil B. DeMille" ."""
g.parse(data=n3, format='n3')
turtle = g.serialize(format="turtle")
# Check round-tripping, just for kicks.
g = ConjunctiveGraph()
g.parse(data=turtle, format='turtle')
# Shouldn't have got to here
self.assert_('_9' not in g.serialize(format="turtle"))




0 comments on commit 45cc9f1

Please sign in to comment.