micropython-lib/os.path/test_path.py

9 wiersze
239 B
Python
Czysty Zwykły widok Historia

from os.path import *
assert split("") == ("", "")
assert split("path") == ("", "path")
assert split("/") == ("/", "")
assert split("/foo") == ("/", "foo")
assert split("/foo/") == ("/foo", "")
assert split("/foo/bar") == ("/foo", "bar")