예제 #1
0
 def test_url_already_with_https_prefix(self):
     self.assertEqual(validators.url("https://127.0.0.1"), "https://127.0.0.1")
예제 #2
0
 def test_url_already_with_https_prefix(self):
     self.assertEqual(validators.url("https://127.0.0.1"), "https://127.0.0.1")
예제 #3
0
 def test_url_adding_http_prefix(self):
     self.assertEqual(validators.url("127.0.0.1"), "http://127.0.0.1")
예제 #4
0
 def test_url_adding_http_prefix(self):
     self.assertEqual(validators.url("127.0.0.1"), "http://127.0.0.1")