Skip to content

Commit

Permalink
add test_url.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Dec 3, 2024
1 parent d9d4a75 commit 6a4e450
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_internal/test_url.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pytest


@pytest.mark.parametrize("url", ["https://github.com"])
def test_httpurl(url: str):
from bioimageio.spec._internal.url import HttpUrl

assert HttpUrl(url).exists(), url

0 comments on commit 6a4e450

Please sign in to comment.