Skip to content

Commit

Permalink
add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Jul 25, 2024
1 parent 6b882f3 commit f269a72
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions integration_tests/test_str_06.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
def main0():
x: str
x = "Hello, World"

assert "Hello" in x
assert "," in x
assert "rld" in x

assert "Hello" not in "World"

main0()

0 comments on commit f269a72

Please sign in to comment.