예제 #1
0
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),
    ])
예제 #2
0
파일: test_cnab.py 프로젝트: lulzzz/stoq
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,
    )