mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-03-24 22:01:54 +08:00
13 lines
381 B
Python
13 lines
381 B
Python
from module.conf import PLATFORM
|
|
|
|
|
|
def test_path_to_bangumi():
|
|
# Test for unix-like path
|
|
from module.downloader.path import TorrentPath
|
|
path = "Downloads/Bangumi/Kono Subarashii Sekai ni Shukufuku wo!/Season 2/"
|
|
bangumi_name, season = TorrentPath()._path_to_bangumi(path)
|
|
assert bangumi_name == "Kono Subarashii Sekai ni Shukufuku wo!"
|
|
assert season == 2
|
|
|
|
|