[jboss-svn-commits] JBL Code SVN: r8835 - 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
Fri Jan 12 04:57:49 EST 2007
Author: michael.neale at jboss.com
Date: 2007-01-12 04:57:47 -0500 (Fri, 12 Jan 2007)
New Revision: 8835
Added:
labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_EffectiveDate.drl
Log:
JBRULES-606 forgot this one
Added: labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_EffectiveDate.drl
===================================================================
--- labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_EffectiveDate.drl 2007-01-11 23:40:19 UTC (rev 8834)
+++ labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/test_EffectiveDate.drl 2007-01-12 09:57:47 UTC (rev 8835)
@@ -0,0 +1,15 @@
+package HelloWorld
+
+#we don't use the import, as class is fully qualified below
+#import org.drools.integrationtests.helloworld.Message
+
+global java.util.List list;
+
+rule "Hello World"
+ date-effective "9-Jul-1974"
+ date-expires "10-Jul-1974"
+ when
+ $m : org.drools.integrationtests.helloworld.Message()
+ then
+ $m.setFired(true);
+end
More information about the jboss-svn-commits
mailing list