コード例 #1
0
ファイル: test_inputs.py プロジェクト: rheehot/sanic-restplus
 def test_default(self):
     assert inputs.natural(3) == 3
コード例 #2
0
ファイル: test_inputs.py プロジェクト: rheehot/sanic-restplus
 def test_string(self):
     with pytest.raises(ValueError):
         inputs.natural('foo')
コード例 #3
0
ファイル: test_inputs.py プロジェクト: rheehot/sanic-restplus
 def test_negative(self):
     with pytest.raises(ValueError):
         inputs.natural(-1)