def test_Size(self): p = Size() with pytest.raises(ValueError) as e: p.validate("junk") assert matches( str(e.value), r"expected a value of type Real, got junk of type (str|unicode)")
def test_Size(self, detail): p = Size() with pytest.raises(ValueError) as e: p.validate("junk", detail) assert str(e).endswith("ValueError") == (not detail)
def test_Size(self): p = Size() with pytest.raises(ValueError) as e: p.validate("junk") assert not str(e).endswith("ValueError")
def test_Size(self, detail) -> None: p = Size() with pytest.raises(ValueError) as e: p.validate("junk", detail) assert (str(e.value) == "") == (not detail)