Files
Core2forAWS-MicroPython/tests/basics/attrtuple1.py
T

20 lines
364 B
Python
Raw Normal View History

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