Exemplo n.º 1
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)
Exemplo n.º 2
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)
Exemplo 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))
Exemplo 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)
Exemplo 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)
Exemplo 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))