Example #1
0
 def test_other_rel(self):
     attrs = {
         (None, "href"): "http://example.com",
         (None, "rel"): "next",
     }
     assert nofollow(attrs) == {
         (None, "href"): "http://example.com",
         (None, "rel"): "next nofollow",
     }
Example #2
0
 def test_other_rel(self):
     attrs = {
         (None, 'href'): 'http://example.com',
         (None, 'rel'): 'next',
     }
     assert (nofollow(attrs) == {
         (None, 'href'): 'http://example.com',
         (None, 'rel'): 'next nofollow'
     })
Example #3
0
 def test_other_rel(self):
     attrs = {
         (None, 'href'): 'http://example.com',
         (None, 'rel'): 'next',
     }
     assert (
         nofollow(attrs) ==
         {(None, 'href'): 'http://example.com', (None, 'rel'): 'next nofollow'}
     )
Example #4
0
 def test_has_nofollow_already(self):
     attrs = {
         (None, 'href'): 'http://example.com',
         (None, 'rel'): 'nofollow',
     }
     assert nofollow(attrs) == attrs
Example #5
0
 def test_mailto(self):
     attrs = {(None, 'href'): 'mailto:[email protected]'}
     assert nofollow(attrs) == attrs
Example #6
0
 def test_basic(self):
     attrs = {(None, 'href'): 'http://example.com'}
     assert (nofollow(attrs) == {
         (None, 'href'): 'http://example.com',
         (None, 'rel'): 'nofollow'
     })
Example #7
0
 def test_no_href(self):
     attrs = {'_text': 'something something'}
     assert nofollow(attrs) == attrs
Example #8
0
 def test_blank(self):
     attrs = {}
     assert nofollow(attrs) == attrs
Example #9
0
 def test_basic(self):
     attrs = {(None, "href"): "http://example.com"}
     assert nofollow(attrs) == {
         (None, "href"): "http://example.com",
         (None, "rel"): "nofollow",
     }
Example #10
0
 def test_has_nofollow_already(self):
     attrs = {
         (None, 'href'): 'http://example.com',
         (None, 'rel'): 'nofollow',
     }
     assert nofollow(attrs) == attrs
Example #11
0
 def test_mailto(self):
     attrs = {(None, 'href'): 'mailto:[email protected]'}
     assert nofollow(attrs) == attrs
Example #12
0
 def test_basic(self):
     attrs = {(None, 'href'): 'http://example.com'}
     assert (
         nofollow(attrs) ==
         {(None, 'href'): 'http://example.com', (None, 'rel'): 'nofollow'}
     )
Example #13
0
 def test_has_nofollow_already(self):
     attrs = {
         (None, "href"): "http://example.com",
         (None, "rel"): "nofollow",
     }
     assert nofollow(attrs) == attrs
Example #14
0
 def test_mailto(self):
     attrs = {(None, "href"): "mailto:[email protected]"}
     assert nofollow(attrs) == attrs
Example #15
0
 def test_blank(self):
     attrs = {}
     assert nofollow(attrs) == attrs
Example #16
0
 def test_no_href(self):
     attrs = {'_text': 'something something'}
     assert nofollow(attrs) == attrs
Example #17
0
 def test_no_href(self):
     attrs = {"_text": "something something"}
     assert nofollow(attrs) == attrs