mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-30 06:26:34 +02:00
Add unit tests
This commit is contained in:
parent
cdf46044d7
commit
659fff322e
3 changed files with 18 additions and 14 deletions
|
@ -2,7 +2,6 @@
|
|||
|
||||
import json
|
||||
from django.test import TestCase, RequestFactory
|
||||
from django.urls import reverse
|
||||
from api.views import available
|
||||
|
||||
from registrar.forms.application_wizard import (
|
||||
|
@ -92,7 +91,12 @@ class TestFormValidation(MockEppLib):
|
|||
"Enter a domain using only letters, numbers, " "or hyphens (though we don't recommend using hyphens).",
|
||||
),
|
||||
# required
|
||||
("", "Enter the .gov domain you want. Don’t include “www” or “.gov.”"),
|
||||
(
|
||||
"",
|
||||
"Enter the .gov domain you want. Don’t include “www” or “.gov.”"
|
||||
" For example, if you want www.city.gov, you would enter “city”"
|
||||
" (without the quotes).",
|
||||
),
|
||||
# unavailable
|
||||
(
|
||||
"whitehouse.gov",
|
||||
|
@ -143,8 +147,6 @@ class TestFormValidation(MockEppLib):
|
|||
"underscores_forever",
|
||||
"Enter a domain using only letters, numbers, " "or hyphens (though we don't recommend using hyphens).",
|
||||
),
|
||||
# required
|
||||
("", "Enter the .gov domain you want. Don’t include “www” or “.gov.”"),
|
||||
# unavailable
|
||||
(
|
||||
"whitehouse.gov",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue