コード例 #1
0
ファイル: tests.py プロジェクト: fabiant7t/django-oida
 def test_if_app_installed_decorator_with_installed_app(self):
    result = if_app(self.some_method, self.missing_app_name)
    self.assertFalse(result)
コード例 #2
0
ファイル: tests.py プロジェクト: fabiant7t/django-oida
 def test_if_app_installed_decorator_with_installed_app(self):
    result = if_app(self.some_method, self.installed_app_name)
    self.assertTrue(result)