Sha256: 4e6789801252bf2bf9d34dc0680b643fc0ccb899184d8c15bce5cc4a0010c48f

Contents?: true

Size: 799 Bytes

Versions: 1

Compression:

Stored size: 799 Bytes

Contents

require File.dirname(__FILE__) + '/../../test_helper'

class GestpayModuleTest < Test::Unit::TestCase
  include MerbMerchant::Billing::Integrations
  
  def test_notification_method
    Gestpay::Notification.any_instance.expects(:ssl_get).returns('#decryptstring#a=9000000&b=PAY1_UICCODE=242*P1*PAY1_AMOUNT=1234.56*P1*PAY1_TRANSACTIONRESULT=OK*P1*PAY1_BANKTRANSACTIONID=ABCD1234*P1*PAY1_SHOPTRANSACTIONID=1000#/decryptstring#')
    assert_instance_of Gestpay::Notification, Gestpay.notification('a=900000&b=F7DEB36478FD84760F9134F23C922697272D57DE6D4518EB9B4D468B769D9A3A8071B6EB160B35CB412FC1820C7CC12D17B3141855B1ED55468613702A2E213DDE9DE5B0209E13C416448AE833525959F05693172D7F0656')
  end
  
  def test_return_method
    assert_instance_of Gestpay::Return, Gestpay.return('name=cody')
  end
end 

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
merb_merchant-1.4.1 test/unit/integrations/gestpay_module_test.rb