# count_words.py
#задача #автоматизация #python #pytest
def count_words(sentence):# test_count_words.py
return len(sentence.split())
import pytest
from count_words import count_words
def test_regular_sentence():
assert count_words("This is a test sentence.") == 5
assert count_words("Python programming is fun!") == 4
def test_empty_sentence():
assert count_words("") == 0
def test_sentence_with_whitespace():
assert count_words(" ") == 0
assert count_words(" Word spacing test ") == 3
def test_sentence_with_numbers():
assert count_words("There are 123 numbers.") == 4
assert count_words("This sentence has 7 words.") == 5
В данном примере функция count_words()
принимает на вход строку и преобразует ее в список, разбивая по пробелам. Далее она выводим число элементов данного списка, то есть число слов во входной строке. Тесты проверяют правильность работы функции для различных входных данных.#задача #автоматизация #python #pytest