コード例 #1
0
ファイル: test_util.py プロジェクト: C2python/ceph
 def test_invalid(self, response):
     with pytest.raises(ValueError):
         util.str_to_bool(response)
コード例 #2
0
ファイル: test_util.py プロジェクト: C2python/ceph
 def test_falseish_upper(self, response):
     assert util.str_to_bool(response) is False
コード例 #3
0
ファイル: test_util.py プロジェクト: C2python/ceph
 def test_trueish_upper(self, response):
     assert util.str_to_bool(response) is True
コード例 #4
0
 def test_invalid(self, response):
     with pytest.raises(ValueError):
         util.str_to_bool(response)
コード例 #5
0
 def test_falseish_upper(self, response):
     assert util.str_to_bool(response) is False
コード例 #6
0
 def test_trueish_upper(self, response):
     assert util.str_to_bool(response) is True