blob: 088fd07d020e1d525baf7eb6b1aa0a8eebc123da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from __future__ import print_function
from rdflib import *
from rdflib.collection import Collection
def test_issue604():
EX = Namespace('http://ex.co/')
g = Graph()
bn = BNode()
g.add((EX.s, EX.p, bn))
c = Collection(g, bn, map(Literal, [1,2,4]))
c[2] = Literal(3)
got = list(g.objects(bn, RDF.rest/RDF.rest/RDF.first))
expected = [ Literal(3) ]
assert got == [ Literal(3) ], got
|