Skip to content
Snippets Groups Projects
Commit 53bac8e8 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests: Add testcase for str.center().

parent 1b5abfca
No related branches found
No related tags found
No related merge requests found
try:
str.center
except:
import sys
print("SKIP")
sys.exit()
print("foo".center(0))
print("foo".center(1))
print("foo".center(3))
print("foo".center(4))
print("foo".center(5))
print("foo".center(6))
print("foo".center(20))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment