added state wage record, but it isn't quite right

This commit is contained in:
Binh 2011-04-09 15:17:32 -05:00
parent 068f1bbae4
commit 179f67bac9
3 changed files with 120 additions and 48 deletions

View file

@ -6,16 +6,17 @@ RECORD_TYPES = [
'EmployeeWageRecord',
'OptionalEmployeeWageRecord',
'TotalRecord',
'StateWageRecord',
'OptionalTotalRecord',
'StateTotalRecord',
'FinalRecord',
'FinalRecord'
]
def test():
import record, model
for rname in RECORD_TYPES:
inst = record.__dict__[rname]()
print type(inst), len(inst.output())
print type(inst), inst.record_identifier, len(inst.output())
def test_dump():