[lang-ref] ( string_contains ) ( python )
def test_string_contains():
# s in text
text = 'Good morning'
s = 'mo'
assert s in text
def test_string_contains():
# s in text
text = 'Good morning'
s = 'mo'
assert s in text