Added URLValidator test for missing scheme.

This commit is contained in:
Yash Saini 2020-05-08 20:49:14 +02:00 committed by Mariusz Felisiak
parent 87faeee4e0
commit bda6ade7b7
1 changed files with 1 additions and 0 deletions

View File

@ -222,6 +222,7 @@ TEST_DATA = [
(URLValidator(EXTENDED_SCHEMES), 'git+ssh://git@github.com/example/hg-git.git', None),
(URLValidator(EXTENDED_SCHEMES), 'git://-invalid.com', ValidationError),
(URLValidator(), 'no_scheme', ValidationError),
# Trailing newlines not accepted
(URLValidator(), 'http://www.djangoproject.com/\n', ValidationError),
(URLValidator(), 'http://[::ffff:192.9.5.5]\n', ValidationError),