コード例 #1
0
ファイル: test_apps.py プロジェクト: cnbillow/django-machina
 def test_can_use_overridden_applications(self):
     # Run & check
     apps = get_apps(overrides=['test.forum'])
     assert 'test.forum' in apps
コード例 #2
0
ファイル: test_apps.py プロジェクト: cnbillow/django-machina
 def test_can_return_the_vanilla_applications(self):
     # Run & check
     assert get_apps() == MACHINA_VANILLA_APPS
コード例 #3
0
ファイル: test_apps.py プロジェクト: cnbillow/django-machina
 def test_cannot_use_overridden_applications_with_invalid_names(self):
     # Run & check
     apps = get_apps(overrides=['test.forum_alt'])
     assert 'test.forum_alt' not in apps
コード例 #4
0
ファイル: test_apps.py プロジェクト: ashwin31/django-machina
 def test_can_return_the_vanilla_applications(self):
     # Run & check
     assert get_apps() == MACHINA_VANILLA_APPS
コード例 #5
0
ファイル: test_apps.py プロジェクト: ashwin31/django-machina
 def test_cannot_use_overridden_applications_with_invalid_names(self):
     # Run & check
     apps = get_apps(overrides=['test.forum_alt'])
     assert 'test.forum_alt' not in apps
コード例 #6
0
ファイル: test_apps.py プロジェクト: ashwin31/django-machina
 def test_can_use_overridden_applications(self):
     # Run & check
     apps = get_apps(overrides=['test.forum'])
     assert 'test.forum' in apps