def test_signal_raised(self):
        """
        Verifies that a signal has been raised
        """

        fire_background_notification_check()

        self.assertTrue(_SIGNAL_RAISED)
Exemplo n.º 2
0
    def test_signal_raised(self):
        """
        Verifies that a signal has been raised
        """

        fire_background_notification_check()

        self.assertTrue(_SIGNAL_RAISED)
    def handle(self, *args, **options):
        """
        Management command entry point, simply call into the signal firiing
        """

        log.info("Running management command to fire notifications asynchronously...")

        fire_background_notification_check()

        log.info("Completed background_notification_check.")
    def handle(self, *args, **options):
        """
        Management command entry point, simply call into the signal firiing
        """

        log.info("Running management command to fire notifications asynchronously...")

        fire_background_notification_check()

        log.info("Completed background_notification_check.")