8 lines
125 B
Python
8 lines
125 B
Python
import os
|
|
from src.download import Download
|
|
|
|
|
|
def test_Download():
|
|
dl = Download({})
|
|
assert dl.check_aria2() == True
|