Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions src/test/test_pv_puller_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,29 +399,6 @@ def test_extract_pv_list_with_whitespace():
assert result == ["value1", "value2"]


def test_extract_pv_list_with_http_urls():
"""Test that lists with HTTP URLs are filtered out"""
pv_list = [
{"value": "http://example.com/value1"},
{"value": "value2"}
]

result = extract_pv_list(pv_list)

assert result is None


def test_extract_pv_list_with_https_urls():
"""Test that lists with HTTPS URLs are filtered out"""
pv_list = [
{"value": "https://example.com/value1"}
]

result = extract_pv_list(pv_list)

assert result is None


def test_extract_pv_list_empty():
"""Test extraction from empty list"""
result = extract_pv_list([])
Expand Down
Loading