Ejemplo n.º 1
0
 def test_url_placeholder(self):
     tmp = f.url_placeholder(self.text)
     self.assertEqual(tmp, "Ooooh myyy gooooooood, @username!!!! :D :) This is #amazing: ||URL||".lower())
Ejemplo n.º 2
0
def placeholders(text):
  text = f.url_placeholder(text)
  text = f.username_placeholder(text)
  text = f.hash_placeholder(text)
  return text
Ejemplo n.º 3
0
def placeholders(text):
    text = f.url_placeholder(text)
    text = f.username_placeholder(text)
    text = f.hash_placeholder(text)
    return text