def test_email_match(self):
     'Test that an email is picked up by the Matcher'
     r = publicEmailMatcher.match('*****@*****.**')
     self.assertTrue(r)
 def test_not_email(self):
     r = publicEmailMatcher.match('This is not an email')
     self.assertIsNone(r)