Skip to content

Commit 726bbeb

Browse files
author
Graham Higgins
committed
Remove obsolete test
1 parent 11c2ba6 commit 726bbeb

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

test/graph_case.py

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -128,35 +128,6 @@ def testTriples(self):
128128
self.removeStuff()
129129
asserte(len(list(triples((Any, Any, Any)))), 0)
130130

131-
def testGraphValue(self):
132-
from rdflib.graph import GraphValue
133-
134-
graph = self.graph
135-
136-
alice = URIRef("alice")
137-
bob = URIRef("bob")
138-
pizza = URIRef("pizza")
139-
cheese = URIRef("cheese")
140-
141-
g1 = Graph()
142-
g1.add((alice, RDF.value, pizza))
143-
g1.add((bob, RDF.value, cheese))
144-
g1.add((bob, RDF.value, pizza))
145-
146-
g2 = Graph()
147-
g2.add((bob, RDF.value, pizza))
148-
g2.add((bob, RDF.value, cheese))
149-
g2.add((alice, RDF.value, pizza))
150-
151-
gv1 = GraphValue(store=graph.store, graph=g1)
152-
gv2 = GraphValue(store=graph.store, graph=g2)
153-
graph.add((gv1, RDF.value, gv2))
154-
v = graph.value(gv1)
155-
self.assertEquals(gv2, v)
156-
#print list(gv2)
157-
#print gv2.identifier
158-
graph.remove((gv1, RDF.value, gv2))
159-
160131
def testConnected(self):
161132
graph = self.graph
162133
self.addStuff()

0 commit comments

Comments
 (0)