mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 17:25:26 -04:00
7 lines
219 B
Python
7 lines
219 B
Python
from src import personal_docs
|
|
|
|
|
|
def test_string_list_filters_non_strings():
|
|
assert personal_docs._string_list(["/tmp/a", None, 3, "/tmp/b"]) == ["/tmp/a", "/tmp/b"]
|
|
assert personal_docs._string_list(None) == []
|