def test_finds_hrefs_inside_otherstuff(self): self.assertEquals( get_anchor_contents('Here is a <a href="http://example.com/?blah=1234&something-else=KKdjfkdksa">link</a> to somewhere...'), [u'link'] )
def test_finds_two_duplicates(self): self.assertEquals( get_anchor_contents('<a href="http://example.com">Test</a><a href="http://example.com">Test</a>'), [u'Test', u'Test'] )
def test_finds_single_href(self): self.assertEquals( get_anchor_contents('<a href="http://example.com">Test</a>'), [u'Test'] )
def test_finds_hrefs_inside_otherstuff(self): self.assertEquals( get_anchor_contents( 'Here is a <a href="http://example.com/?blah=1234&something-else=KKdjfkdksa">link</a> to somewhere...' ), [u'link'])
def test_finds_two_duplicates(self): self.assertEquals( get_anchor_contents( '<a href="http://example.com">Test</a><a href="http://example.com">Test</a>' ), [u'Test', u'Test'])
def test_finds_single_href(self): self.assertEquals( get_anchor_contents('<a href="http://example.com">Test</a>'), [u'Test'])