def test_if_app_installed_decorator_with_installed_app(self): result = if_app(self.some_method, self.missing_app_name) self.assertFalse(result)
def test_if_app_installed_decorator_with_installed_app(self): result = if_app(self.some_method, self.installed_app_name) self.assertTrue(result)