Added fit.ActionFixture and fixed the loader. Added ListAdapter.
[stuff.git] / pyfit / ColumnFixture.py
blobd569400a0be2aab734cc4f98b4d20f53cd5e5c25
1 from util import *
3 class ColumnFixture(object):
4 def process(self, table):
5 row = table.rows[1]
7 desc = []
8 for cell in row:
9 desc.append(parse_action(str(cell)))
11 for row in table.rows[2:]:
12 for (d, cell) in zip(desc, row):
13 d.apply(self, cell, self.adapters)