I have the following in my global block:
test = defaction(){
if(5>10) then {
notify("yes","yes");
}
}
Then I also have the following rule:
rule tester {
select when pageview ".*"
test();
}
I am expecting that the notify will never happen, as 5 will never be greater than 10. However, it runs on every single page. I am sure that I am doing it wrong, although it feels right.