Method: ActiveMerchant::Billing::MigsGateway#verify

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

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



126
127
128
129
130
131
# File 'lib/active_merchant/billing/gateways/migs.rb', line 126

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