mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-08-04 18:35:30 +00:00
Some checks are pending
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
ci / docker publish / build (amd64) (push) Waiting to run
ci / docker publish / build (arm64) (push) Waiting to run
ci / docker publish / merge manifest + tag (push) Blocked by required conditions
Slice 2j of the route-domain reorganization (#4082/#4071). Moves search_routes.py into routes/search/, leaving a backward-compat sys.modules shim. Pure file reorganization, no behavior change.
11 lines
378 B
Python
11 lines
378 B
Python
"""Regression test for the search route shim (slice 2j, #4082/#4071)."""
|
|
|
|
import importlib
|
|
|
|
import routes.search_routes as _shim_search # noqa: F401
|
|
|
|
|
|
def test_legacy_and_canonical_search_module_are_same_object():
|
|
legacy = importlib.import_module("routes.search_routes")
|
|
canonical = importlib.import_module("routes.search.search_routes")
|
|
assert legacy is canonical
|