Skip to content

Commit

Permalink
Merge pull request #590 from AbdullahM0hamed/split-test
Browse files Browse the repository at this point in the history
Change split anime test
  • Loading branch information
AbdullahM0hamed committed Dec 16, 2020
2 parents 93a3bb1 + bc3571b commit 74e3d37
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_util.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import pytest

from anime_downloader import util

from unittest.mock import Mock

def test_split_anime():
anime_list = list(range(20))

assert len(util.split_anime(anime_list, '1:10')) == 9
anime = Mock()
anime._episode_urls = list(enumerate(range(20)))
assert len(util.split_anime(anime, '1:10')._episode_urls) == 9

def test_check_in_path_exists():
assert util.check_in_path('ls')

def test_check_in_path_not_exists():
assert not util.check_in_path('someAppI_madeUp')
assert not util.check_in_path('someAppI_madeUp')

0 comments on commit 74e3d37

Please sign in to comment.