We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdfd371 commit 2c900f8Copy full SHA for 2c900f8
test/test_trix_parse.py
100755
100644
@@ -35,8 +35,18 @@ def testSpec(self):
35
36
#print "Parsed %d triples"%len(g)
37
38
+ def testNG4j(self):
39
40
+ g=ConjunctiveGraph()
41
+
42
+ g.parse("test/trix/ng4jtest.trix",format="trix")
43
44
+ #print "Parsed %d triples"%len(g)
45
46
+import platform
47
+if platform.system() == 'Java':
48
+ from nose import SkipTest
49
+ raise SkipTest('Jython issues - "JavaSAXParser" object has no attribute "start_namespace_decl"')
50
51
if __name__=='__main__':
52
unittest.main()
0 commit comments