def test_collect_commits_hash(repository_url): """Check the commits hash has been gathered.""" list = [] assert len(list) == 0 list = data_collection.collect_commits_hash(repository_url) assert len(list) != 0
def test_collect_commits_user_hash(repository_url): """Check the collection of the commits hash.""" dict = {} assert len(dict) == 0 dict = data_collection.collect_commits_hash(repository_url) assert len(dict) != 0
def test_collect_commits_hash(repository_url): list = [] assert len(list) == 0 list = data_collection.collect_commits_hash(repository_url) assert len(list) != 0
def test_collect_commits_hash(): list = [] assert len(list) == 0 list = data_collection.collect_commits_hash(data_collection.repo_path) assert len(list) != 0
def test_collect_commits_user_hash(repository_url): dict = {} assert len(dict) == 0 dict = data_collection.collect_commits_hash(repository_url) assert len(dict) != 0