mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-13 20:49:52 +02:00
Introduce `TableTestCases.StandardTableTestCase`, a shared base class for model-backed table smoke tests. It currently discovers sortable columns from list-view querysets and verifies that each renders without exceptions in both ascending and descending order. Add per-table smoke tests across circuits, core, dcim, extras, ipam, tenancy, users, virtualization, vpn, and wireless apps. Fixes #21766
7 lines
129 B
Python
7 lines
129 B
Python
from .api import *
|
|
from .base import *
|
|
from .filtersets import *
|
|
from .tables import *
|
|
from .utils import *
|
|
from .views import *
|