pytube / tests /test_cli.py
hbmartin's picture
black formatting for tests
82321d6
raw
history blame
343 Bytes
# -*- coding: utf-8 -*-
from unittest import mock
from pytube import cli
@mock.patch("pytube.cli.YouTube")
@mock.patch("pytube.cli.sys")
def test_download(MockYouTube, mock_sys):
instance = MockYouTube.return_value
instance.prefetch_descramble.return_value = None
instance.streams = mock.Mock()
cli.download("asdf", "asdf")