mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
Move tests in basic/tests/ up one level preparating to multiple test dirs.
This commit is contained in:
11
tests/basics/string_find.py
Normal file
11
tests/basics/string_find.py
Normal file
@@ -0,0 +1,11 @@
|
||||
print("hello world".find("ll"))
|
||||
print("hello world".find("ll", None))
|
||||
print("hello world".find("ll", 1))
|
||||
print("hello world".find("ll", 1, None))
|
||||
print("hello world".find("ll", None, None))
|
||||
print("hello world".find("ll", 1, -1))
|
||||
print("hello world".find("ll", 1, 1))
|
||||
print("hello world".find("ll", 1, 2))
|
||||
print("hello world".find("ll", 1, 3))
|
||||
print("hello world".find("ll", 1, 4))
|
||||
print("hello world".find("ll", 1, 5))
|
||||
Reference in New Issue
Block a user