Test len without parameterization
We can write several test function. One for each string:
import pytest
def test_case_foo():
assert len("Foo") == 3
def test_case_bar():
assert len("Bar") == 3
def test_case_emojies():
assert len("🐍🐪🦀") == 3