Test invalid URL validation
(self)
| 35 | assert str(help_obj.online) == "https://github.com/espressif/arduino-esp32" |
| 36 | |
| 37 | def test_invalid_url(self) -> None: |
| 38 | """Test invalid URL validation""" |
| 39 | with pytest.raises(ValidationError): |
| 40 | Help(online="not-a-valid-url") # type: ignore |
| 41 | |
| 42 | |
| 43 | class TestBoard: |