Example #1
0
 def test_is_callable_tag_not_tag(self):
     assert not utils.is_callable_tag('foobar')
Example #2
0
 def test_is_callable_tag(self):
     assert utils.is_callable_tag('{{foobar}}')
Example #3
0
 def test_is_callable_tag_not_str(self):
     assert not utils.is_callable_tag(1)
     assert not utils.is_callable_tag(None)