Skip to content

Commit 2fbbdb7

Browse files
committed
Add reproduction test case for #23
1 parent b3c81ea commit 2fbbdb7

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

tests/parse_examples.rs

+6
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,12 @@ fn wildtype_bibo_ontology() {
222222
parse_wildtype_file("bibo.ttl");
223223
}
224224

225+
#[test]
226+
#[ignore]
227+
fn wildtype_blank_node_object_dot() {
228+
parse_wildtype_file("blank_node_object_dot.ttl");
229+
}
230+
225231
#[test]
226232
fn leading_whitespace_base() {
227233
let file_name = "leading_whitespace_base.ttl";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@prefix : <http://example.com/> .
2+
3+
<http://example.com/TriplesMap0>
4+
a :Foo;
5+
:fooBar [
6+
a :barFoo;
7+
].

0 commit comments

Comments
 (0)