pubs/tests/test_color.py
2013-11-14 04:40:29 +01:00

10 lines
187 B
Python

import testenv
from pubs import color
def perf_color():
s = str(range(1000))
for _ in range(5000000):
color.dye(s, color.red)
if __name__ == '__main__':
perf_color()