def test_OncePerDay(self, ms): class RuleCounter(StatefulRule): """ A rule that counts the number of times another rule triggers but forwards the results out. """ count = 0 def should_trigger(self, dt): st = self.rule.should_trigger(dt) if st: self.count += 1 return st rule = RuleCounter(OncePerDay()) for m in ms: rule.should_trigger(m) self.assertEqual(rule.count, 1)
def test_OncePerDay(self): class RuleCounter(StatefulRule): """ A rule that counts the number of times another rule triggers but forwards the results out. """ count = 0 def should_trigger(self, dt): st = self.rule.should_trigger(dt) if st: self.count += 1 return st rule = RuleCounter(OncePerDay()) for m in self.minutes: rule.should_trigger(m) # We are only using 5 trading days. self.assertEqual(rule.count, 5)
def test_OncePerDay(self): class RuleCounter(StatefulRule): """ A rule that counts the number of times another rule triggers but forwards the results out. """ count = 0 def should_trigger(self, dt): st = self.rule.should_trigger(dt) if st: self.count += 1 return st for minute_group in minutes_for_days(self.cal): rule = RuleCounter(OncePerDay()) for minute in minute_group: rule.should_trigger(minute) assert rule.count == 1