[pypy-svn] r35163 - pypy/dist/pypy/lib/pyontology/test

ale at codespeak.net ale at codespeak.net
Thu Nov 30 15:23:33 CET 2006


Author: ale
Date: Thu Nov 30 15:23:32 2006
New Revision: 35163

Modified:
   pypy/dist/pypy/lib/pyontology/test/test_ontology.py
Log:
Skip for now

Modified: pypy/dist/pypy/lib/pyontology/test/test_ontology.py
==============================================================================
--- pypy/dist/pypy/lib/pyontology/test/test_ontology.py	(original)
+++ pypy/dist/pypy/lib/pyontology/test/test_ontology.py	Thu Nov 30 15:23:32 2006
@@ -35,6 +35,7 @@
     raises(ConsistencyFailure, O.consistency)
 
 def test_XMLSchema_string():
+    py.test.skip("WIP")
     O = Ontology()
     a = URIRef(u'A')
     p = URIRef(u'P')
@@ -46,6 +47,7 @@
     O.consistency()
 
 def test_XMLSchema_string_fail():
+    py.test.skip("WIP")
     O = Ontology()
     a = URIRef(u'A')
     p = URIRef(u'P')
@@ -658,11 +660,6 @@
     lll = len(O.variables)
     assert len(list(O.graph.triples((None,)*3))) > l
 
-def test_allvalues_file():
-    O = Ontology()
-    O.add_file('approved/allValuesFrom/premises002.rdf')
-    O.add_file('approved/allValuesFrom/nonconclusions002.rdf')
-    
 def test_import():
     O = Ontology()
     s = URIRef('s')



More information about the Pypy-commit mailing list