コード例 #1
0
ファイル: test_actions.py プロジェクト: SewanDevs/pysyphe
 def test__check_fct_not_callable():
     with pytest.raises(ActionException):
         StatefullAction._check_fct(10)
コード例 #2
0
ファイル: test_actions.py プロジェクト: SewanDevs/pysyphe
 def test__check_fct_not_good():
     with pytest.raises(ActionException):
         StatefullAction._check_fct(lambda: 10)
コード例 #3
0
ファイル: test_actions.py プロジェクト: SewanDevs/pysyphe
 def test__check_fct_not_good_too():
     with pytest.raises(ActionException):
         StatefullAction._check_fct(lambda state, something_else: 10)
コード例 #4
0
ファイル: test_actions.py プロジェクト: SewanDevs/pysyphe
 def test__check_fct():
     StatefullAction._check_fct(lambda state: 10)