Method: ActiveMerchant::Billing::PaymentezGateway#verify

Defined in:
lib/active_merchant/billing/gateways/paymentez.rb

#verify(credit_card, options = {}) ⇒ Object



116
117
118
119
120
121
# File 'lib/active_merchant/billing/gateways/paymentez.rb', line 116

def verify(credit_card, options = {})
  MultiResponse.run do |r|
    r.process { authorize(100, credit_card, options) }
    r.process { void(r.authorization, options) }
  end
end