コード例 #1
0
ファイル: test_example.py プロジェクト: huntinux/python
 def test_larger_than_two(self, value):
     self.assertTrue(larger_than_two(value))
コード例 #2
0
ファイル: test_example.py プロジェクト: huntinux/python
 def test_not_larger_than_two(self, value):
     self.assertFalse(larger_than_two(value))
コード例 #3
0
ファイル: test_example.py プロジェクト: huntinux/python
 def test_undecorated(self):
     self.assertTrue(larger_than_two(24))