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.

Files changed (35) hide show
  1. {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/METADATA +5 -14
  2. {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/RECORD +35 -35
  3. fleetfinder/__init__.py +5 -3
  4. fleetfinder/apps.py +5 -4
  5. fleetfinder/locale/cs_CZ/LC_MESSAGES/django.po +21 -22
  6. fleetfinder/locale/de/LC_MESSAGES/django.mo +0 -0
  7. fleetfinder/locale/de/LC_MESSAGES/django.po +27 -24
  8. fleetfinder/locale/django.pot +22 -23
  9. fleetfinder/locale/es/LC_MESSAGES/django.po +25 -22
  10. fleetfinder/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  11. fleetfinder/locale/fr_FR/LC_MESSAGES/django.po +67 -59
  12. fleetfinder/locale/it_IT/LC_MESSAGES/django.po +21 -22
  13. fleetfinder/locale/ja/LC_MESSAGES/django.po +25 -22
  14. fleetfinder/locale/ko_KR/LC_MESSAGES/django.po +25 -22
  15. fleetfinder/locale/nl_NL/LC_MESSAGES/django.po +21 -22
  16. fleetfinder/locale/pl_PL/LC_MESSAGES/django.po +21 -22
  17. fleetfinder/locale/ru/LC_MESSAGES/django.po +25 -22
  18. fleetfinder/locale/sk/LC_MESSAGES/django.po +21 -22
  19. fleetfinder/locale/uk/LC_MESSAGES/django.mo +0 -0
  20. fleetfinder/locale/uk/LC_MESSAGES/django.po +50 -56
  21. fleetfinder/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  22. fleetfinder/locale/zh_Hans/LC_MESSAGES/django.po +28 -25
  23. fleetfinder/providers.py +22 -4
  24. fleetfinder/tasks.py +279 -110
  25. fleetfinder/tests/__init__.py +39 -1
  26. fleetfinder/tests/test_access.py +2 -2
  27. fleetfinder/tests/test_auth_hooks.py +2 -2
  28. fleetfinder/tests/test_settings.py +3 -2
  29. fleetfinder/tests/test_tasks.py +1010 -34
  30. fleetfinder/tests/test_templatetags.py +2 -4
  31. fleetfinder/tests/test_user_agent.py +62 -14
  32. fleetfinder/tests/test_views.py +700 -52
  33. fleetfinder/views.py +102 -55
  34. {aa_fleetfinder-2.7.1.dist-info → aa_fleetfinder-3.0.0b1.dist-info}/WHEEL +0 -0
  35. {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(TestCase):
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 TestCase, override_settings
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(TestCase):
13
+ class TestSettings(BaseTestCase):
13
14
  """
14
15
  Test the settings
15
16
  """