コード例 #1
0
ファイル: test_myApp.py プロジェクト: kwanghyun/Showcases
 def test_doubleit_tpye(self):
     with pytest.raises(TypeError):
         myApp.doubleit("hello")
コード例 #2
0
ファイル: test_myApp.py プロジェクト: kwanghyun/Showcases
 def test_doubleit_value(self):
     assert myApp.doubleit(10) == 20