7 lines
146 B
Python
7 lines
146 B
Python
from more_itertools import ilen
|
|
from my.coding.commits import commits
|
|
|
|
|
|
def test():
|
|
all_commits = commits()
|
|
assert ilen(all_commits) > 10
|