class TestBank(BankInfo): description = 'Test Bank' bank_number = 99 foo = custom_property('foo', 8) campo_livre = '0' * 25 options = collections.OrderedDict([ ('opcao_teste', BILL_OPTION_CUSTOM), ('segunda_opcao', BILL_OPTION_CUSTOM), ])
class TestBank(BankInfo): description = 'Test Bank' bank_number = 99 foo = custom_property('foo', 8) campo_livre = '0' * 25 options = dict( opcao_teste=BILL_OPTION_CUSTOM, segunda_opcao=BILL_OPTION_CUSTOM, )