blob: 03b0e81a6960cfd17ccbf89068614d5678fe4b33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
Various unit tests for rdflib
Graph tests
===========
(Graphs are mostly tested through the store tests - detailed below)
test_aggregate_graphs - special tests for the ReadOnlyGraphAggregate class
Store tests
===========
These tests test all stores plugins that are registered, i.e. you may test more than just core rdflib:
test_graph - all stores
test_graph_context - only context aware stores
test_graph_formula - only formula aware stores
Syntax tests
============
test_n3 - test misc n3 features
test_n3_suite - n3 test-cases in n3/*
test_nt_misc - test misc nt features
test_rdfxml - rdf-wg RDF/XML test-cases in rdf/*
test_trix - trix test-cases in trix/*
test_nquads - nquads test-cases in nquads/*
test_roundtrip - roundtrip testing of all files nt/*
All parser/serializer pairs that are registered are tested, i.e you may test more than just core rdflib.
Misc tests
==========
test_finalnewline - test that all serializers produce output with a final newline
test_conneg - test content negotiation when reading remote graphs
|