Esempio n. 1
0
 def test_if_app_installed_decorator_with_installed_app(self):
    result = if_app(self.some_method, self.missing_app_name)
    self.assertFalse(result)
Esempio n. 2
0
 def test_if_app_installed_decorator_with_installed_app(self):
    result = if_app(self.some_method, self.installed_app_name)
    self.assertTrue(result)