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

5 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-23 18:20 +0000

1from django.urls import path 

2 

3from benefits.routes import routes 

4from benefits.enrollment_switchio.views import IndexView, GatewayUrlView 

5 

6 

7app_name = "switchio" 

8urlpatterns = [ 

9 # /switchio 

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

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

12]