@Test public void testYmrisBlankNodeInConclusion()
{
LogBindings sink = new LogBindings();
String rules = "RULE {?x a <eh:/HasP> } => { ?x <eh:/P> [] }";
BindingSink in = Utils.rulesToDeployment( sink, rules );
in.consume( nodeArray( "X x rdf:type HasP" ) );
assertEquals( 1, sink.bindings.size() );
List<Node> bound = sink.bindings.get(0);
assertEquals( node( "x" ), bound.get(1) );
assertEquals( node( "P" ), bound.get(2) );
assertTrue( bound.get(3).isBlank() );