示例#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())
示例#2
0
def placeholders(text):
  text = f.url_placeholder(text)
  text = f.username_placeholder(text)
  text = f.hash_placeholder(text)
  return text
示例#3
0
def placeholders(text):
    text = f.url_placeholder(text)
    text = f.username_placeholder(text)
    text = f.hash_placeholder(text)
    return text