summaryrefslogtreecommitdiff
path: root/tests/validators
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validators')
-rw-r--r--tests/validators/tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/validators/tests.py b/tests/validators/tests.py
index 9be49d7726..0beae52a83 100644
--- a/tests/validators/tests.py
+++ b/tests/validators/tests.py
@@ -145,6 +145,9 @@ TEST_DATA = (
(URLValidator(), 'http://valid-----hyphens.com/', None),
(URLValidator(), 'http://example.com?something=value', None),
(URLValidator(), 'http://example.com/index.php?something=value&another=value2', None),
+ (URLValidator(), 'https://example.com/', None)
+ (URLValidator(), 'ftp://example.com/', None)
+ (URLValidator(), 'ftps://example.com/', None)
(URLValidator(), 'foo', ValidationError),
(URLValidator(), 'http://', ValidationError),