コード例 #1
0
ファイル: testsimpletemplate.py プロジェクト: siguremon/pyweb
 def test_if_pat_is_not_match(self):
     actual = if_pat.search('$if:')
     self.assertIsNone(actual)
コード例 #2
0
ファイル: testsimpletemplate.py プロジェクト: siguremon/pyweb
 def test_if_pat_is_match(self):
     actual = if_pat.search('$if True:')
     self.assertIsNotNone(actual)
     self.assertEqual('True:', actual.group(1))