You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
345 B

  1. from .hangman import multi_word
  2. tests = [
  3. [
  4. 'cat',
  5. 'mat',
  6. 'hat',
  7. 'tap',
  8. 'sum',
  9. ],
  10. [
  11. 'kangaroo',
  12. 'compound',
  13. 'lollipop',
  14. ],
  15. [
  16. 'receive',
  17. 'buffalo',
  18. 'seventh',
  19. 'justify',
  20. ]
  21. ]
  22. def test():
  23. print('\n'.join(multi_word(tests)))