Example #1
0
def MoneyFactory(ftype=1):
    factory = RawMoneyFactory(ftype=ftype)
    # the load_exchange_rates of through webservices or databases
    factory.load_exchange_rates = MagicMock(return_value=[])
    return factory
Example #2
0
def MoneyFactory(ftype=1):
    factory = RawMoneyFactory(ftype=ftype)
    # the load_exchange_rates of through webservices or databases
    factory.load_exchange_rates = MagicMock(return_value=[])
    return factory