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

5 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-10-21 19:31 +0000

1""" 

2The eligibility application: URLConf for the eligibility verification flow. 

3""" 

4 

5from django.urls import path 

6 

7from benefits.routes import routes 

8from . import views 

9 

10 

11app_name = "eligibility" 

12urlpatterns = [ 

13 # /eligibility 

14 path("", views.index, name=routes.name(routes.ELIGIBILITY_INDEX)), 

15 path("start", views.start, name=routes.name(routes.ELIGIBILITY_START)), 

16 path("confirm", views.confirm, name=routes.name(routes.ELIGIBILITY_CONFIRM)), 

17 path("unverified", views.unverified, name=routes.name(routes.ELIGIBILITY_UNVERIFIED)), 

18]