aa-fleetfinder 2.7.1__py3-none-any.whl → 3.0.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aa-fleetfinder might be problematic. Click here for more details.
- {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/METADATA +5 -14
- {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/RECORD +35 -35
- fleetfinder/__init__.py +5 -3
- fleetfinder/apps.py +5 -4
- fleetfinder/locale/cs_CZ/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/de/LC_MESSAGES/django.mo +0 -0
- fleetfinder/locale/de/LC_MESSAGES/django.po +27 -24
- fleetfinder/locale/django.pot +22 -23
- fleetfinder/locale/es/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- fleetfinder/locale/fr_FR/LC_MESSAGES/django.po +67 -59
- fleetfinder/locale/it_IT/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/ja/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/ko_KR/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/nl_NL/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/pl_PL/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/ru/LC_MESSAGES/django.po +25 -22
- fleetfinder/locale/sk/LC_MESSAGES/django.po +21 -22
- fleetfinder/locale/uk/LC_MESSAGES/django.mo +0 -0
- fleetfinder/locale/uk/LC_MESSAGES/django.po +50 -56
- fleetfinder/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- fleetfinder/locale/zh_Hans/LC_MESSAGES/django.po +28 -25
- fleetfinder/providers.py +22 -4
- fleetfinder/tasks.py +279 -110
- fleetfinder/tests/__init__.py +39 -1
- fleetfinder/tests/test_access.py +2 -2
- fleetfinder/tests/test_auth_hooks.py +2 -2
- fleetfinder/tests/test_settings.py +3 -2
- fleetfinder/tests/test_tasks.py +1010 -34
- fleetfinder/tests/test_templatetags.py +2 -4
- fleetfinder/tests/test_user_agent.py +62 -14
- fleetfinder/tests/test_views.py +700 -52
- fleetfinder/views.py +102 -55
- {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/WHEEL +0 -0
- {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,14 +6,14 @@ Test auth_hooks
|
|
|
6
6
|
from http import HTTPStatus
|
|
7
7
|
|
|
8
8
|
# Django
|
|
9
|
-
from django.test import TestCase
|
|
10
9
|
from django.urls import reverse
|
|
11
10
|
|
|
12
11
|
# AA Fleet Finder
|
|
12
|
+
from fleetfinder.tests import BaseTestCase
|
|
13
13
|
from fleetfinder.tests.utils import create_fake_user
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
class TestHooks(
|
|
16
|
+
class TestHooks(BaseTestCase):
|
|
17
17
|
"""
|
|
18
18
|
Test the app hook into allianceauth
|
|
19
19
|
"""
|
|
@@ -3,13 +3,14 @@ Test the settings
|
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
# Django
|
|
6
|
-
from django.test import
|
|
6
|
+
from django.test import override_settings
|
|
7
7
|
|
|
8
8
|
# AA Fleet Finder
|
|
9
9
|
from fleetfinder.app_settings import debug_enabled
|
|
10
|
+
from fleetfinder.tests import BaseTestCase
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
class TestSettings(
|
|
13
|
+
class TestSettings(BaseTestCase):
|
|
13
14
|
"""
|
|
14
15
|
Test the settings
|
|
15
16
|
"""
|