[jboss-svn-commits] JBL Code SVN: r32656 - labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Mon Apr 26 15:33:53 EDT 2010
Author: tirelli
Date: 2010-04-26 15:33:52 -0400 (Mon, 26 Apr 2010)
New Revision: 32656
Added:
labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_DynamicRulesWithNotSubnetwork.drl
Log:
JBRULES-2312: adding test DRL file
Added: labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_DynamicRulesWithNotSubnetwork.drl
===================================================================
--- labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_DynamicRulesWithNotSubnetwork.drl (rev 0)
+++ labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_DynamicRulesWithNotSubnetwork.drl 2010-04-26 19:33:52 UTC (rev 32656)
@@ -0,0 +1,12 @@
+package org.drools;
+
+rule "subnetworks with not"
+ when
+ not(
+ not( Person( name == "bob") ) and
+ not( Person( name == "mark" ) )
+ )
+ then
+ // do something
+end
+
More information about the jboss-svn-commits
mailing list