micropython/tests/basics/attrtuple1.py
Paul Sokolovsky 83623b2fde tests/basic/[a-f]*: Make skippable.
For small ports which don't have all features enabled.
2017-02-15 00:57:56 +03:00

21 lines
373 B
Python

# test attrtuple
# we can't test this type directly so we use sys.implementation object
import sys
t = sys.implementation
# It can be just a normal tuple on small ports
try:
t.name
except AttributeError:
import sys
print("SKIP")
sys.exit()
# test printing of attrtuple
print(str(t).find("version=") > 0)
# test read attr
print(isinstance(t.name, str))