Queer European MD passionate about IT

test_lines.py 174 B

12345678910111213
  1. from lines import count_lines
  2. def main():
  3. test_count_lines()
  4. def test_count_lines():
  5. assert count_lines('lines.py') == 28
  6. if __name__ == "__main__":
  7. main()