示例#1
0
 def test_Seq(self, detail):
     p = Seq(Float)
     with pytest.raises(ValueError) as e:
         p.validate("junk", detail)
     assert str(e).endswith("ValueError") == (not detail)
示例#2
0
 def test_Seq(self):
     p = Seq(Float)
     with pytest.raises(ValueError) as e:
         p.validate("junk")
     assert not str(e).endswith("ValueError")
示例#3
0
 def test_Seq(self, detail) -> None:
     p = Seq(Float)
     with pytest.raises(ValueError) as e:
         p.validate("junk", detail)
     assert (str(e.value) == "") == (not detail)
示例#4
0
 def test_Seq(self) -> None:
     p = Seq(Float)
     with pytest.raises(ValueError) as e:
         p.validate("junk")
     assert matches(str(e.value), r"expected an element of Seq\(Float\), got 'junk'")
示例#5
0
 def test_Seq(self, detail):
     p = Seq(Float)
     with pytest.raises(ValueError) as e:
         p.validate("junk", detail)
     assert str(e).endswith("ValueError") == (not detail)
示例#6
0
 def test_Seq(self):
     p = Seq(Float)
     with pytest.raises(ValueError) as e:
         p.validate("junk")
     assert not str(e).endswith("ValueError")