14 lines
174 B
Python
14 lines
174 B
Python
from lines import count_lines
|
|
|
|
|
|
def main():
|
|
test_count_lines()
|
|
|
|
|
|
def test_count_lines():
|
|
assert count_lines('lines.py') == 28
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|