Esempio n. 1
0
 def test_invalid_https_url(self):
     """Test that a given string is an invalid https url"""
     test_url = 'https://test'
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, test_url)
Esempio n. 2
0
 def test_invalid_string_url(self):
     """Test that a given string is an invalid url"""
     test_url = 'test'
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, test_url)
Esempio n. 3
0
 def test_valid_https_url(self):
     """Test that a given string is a valid https url"""
     test_url = 'https://www.test.com'
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, '<a href="%s">%s</a>' % (test_url, test_url))
Esempio n. 4
0
 def test_invalid_string_url(self):
     """Test that a given string is an invalid url"""
     test_url = 'test'
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, test_url)
Esempio n. 5
0
 def test_invalid_https_url(self):
     """Test that a given string is an invalid https url"""
     test_url = 'https://test'
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, test_url)
Esempio n. 6
0
 def test_valid_https_url(self):
     """Test that a given string is a valid https url"""
     test_url = 'https://www.test.com'
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, '<a href="%s">%s</a>' % (test_url, test_url))
Esempio n. 7
0
 def test_invalid_http_url(self):
     """Test that a given string is an invalid http url"""
     test_url = "http://test"
     urlized_url = simple_urlize(test_url)
     eq_(urlized_url, test_url)