예제 #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