mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-30 08:27:00 -05:00
feat: Implement MFA authentication, add ride statistics model, and update various services, APIs, and tests across the application.
This commit is contained in:
@@ -5,20 +5,18 @@ These tests verify the functionality of park, area, company, location,
|
||||
and review admin classes including query optimization and custom actions.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
from django.contrib.admin.sites import AdminSite
|
||||
from django.contrib.auth import get_user_model
|
||||
from django.test import RequestFactory, TestCase
|
||||
|
||||
from apps.parks.admin import (
|
||||
CompanyAdmin,
|
||||
CompanyHeadquartersAdmin,
|
||||
ParkAdmin,
|
||||
ParkAreaAdmin,
|
||||
ParkLocationAdmin,
|
||||
ParkReviewAdmin,
|
||||
)
|
||||
from apps.parks.models import Company, CompanyHeadquarters, Park, ParkArea, ParkLocation, ParkReview
|
||||
from apps.parks.models import Company, Park, ParkArea, ParkLocation, ParkReview
|
||||
|
||||
User = get_user_model()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user