diff --git a/test/test_skill.py b/test/test_skill.py index 9df76d2..b73de48 100644 --- a/test/test_skill.py +++ b/test/test_skill.py @@ -281,6 +281,10 @@ def test_play_in_ocp_in_container(self, test_skill): ] ) + def test_christmas_day_is_scheduled(self, test_skill): + active_events = [x[0] for x in test_skill.event_scheduler.events.events] + assert "skill-easter-eggs.openvoiceos:Christmas Day" in active_events + if __name__ == "__main__": pytest.main()