def test_notify(self): NotifiersConfig.get()['pushbullet']['token'] = 'test' pushbullet_notifier = PushbulletNotifier.from_config() self.PushBullet.assert_called_once_with("test") pushbullet_notifier.notify("test", "test") self.PushBullet.return_value.push_note.assert_called_once_with("test", "test")
def test_notify(self,Config): Config.pushbullet_token = 'test' pushbullet_notifier = PushbulletNotifier.from_config() self.PushBullet.assert_called_once_with("test") pushbullet_notifier.notify("test", "test") self.PushBullet.return_value.push_note.assert_called_once_with("test", "test")
def test_notify(self, Config): Config.pushbullet_token = 'test' pushbullet_notifier = PushbulletNotifier.from_config() self.PushBullet.assert_called_once_with("test") pushbullet_notifier.notify("test", "test") self.PushBullet.return_value.push_note.assert_called_once_with( "test", "test")
def test_is_enabled_enabled(self, Config): Config.pushbullet_token = 'test' self.assertTrue(PushbulletNotifier.is_enabled())
def test_is_enabled_disabled(self, Config): Config.pushbullet_token = '' self.assertFalse(PushbulletNotifier.is_enabled())
def test_is_enabled_enabled(self): NotifiersConfig.get()['pushbullet']['enabled'] = True self.assertTrue(PushbulletNotifier.is_enabled())
def test_is_enabled_disabled(self): NotifiersConfig.get()['pushbullet']['enabled'] = False self.assertFalse(PushbulletNotifier.is_enabled())