Coverage for benefits / enrollment_switchio / urls.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-02-13 19:35 +0000

1from django.urls import path 

2 

3from benefits.enrollment_switchio.views import GatewayUrlView, IndexView 

4from benefits.routes import routes 

5 

6app_name = "switchio" 

7urlpatterns = [ 

8 # /switchio 

9 path("", IndexView.as_view(), name=routes.name(routes.ENROLLMENT_SWITCHIO_INDEX)), 

10 path("gateway_url", GatewayUrlView.as_view(), name=routes.name(routes.ENROLLMENT_SWITCHIO_GATEWAY_URL)), 

11]