Skip to content

Commit c0ee77e

Browse files
committed
Avoid problematic toRdf test for JRuby.
1 parent 92bbb14 commit c0ee77e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

spec/to_rdf_spec.rb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,10 +1225,14 @@
12251225
"@id": "http://foo/> <http://bar/> <http://baz> .\n<data:little> <data:bobby> <data:tables> .\n<data:in-ur-base",
12261226
"http://killin/#yer": "dudes"
12271227
}),
1228-
output: %()
1228+
output: %(),
1229+
pending: "jruby"
12291230
},
12301231
}.each do |title, params|
1231-
it(title) {run_to_rdf params}
1232+
it(title) do
1233+
pending params[:pending] if params[:pending] == RUBY_ENGINE
1234+
run_to_rdf params
1235+
end
12321236
end
12331237
end
12341238
end

0 commit comments

Comments
 (0)