yandex-tank/Tank/stepper/format.py
Alexey Lavrenuke (load testing) c07fb1e17a some bug fixes. Works.
2013-06-25 17:18:36 +04:00

15 lines
301 B
Python

'''
Ammo formatters
'''
class Stpd(object):
'''
STPD ammo formatter
'''
def __init__(self, ammo_factory):
self.af = ammo_factory
def __iter__(self):
return ("%s %s %s\n%s\n" % (len(missile), timestamp, marker, missile) for timestamp, marker, missile in self.af)