Sha256: 5ac86a68d8c05d0529a2fde569c80a645fb2607d8b9e80edefb793068d7ec7e8
Contents?: true
Size: 1.55 KB
Versions: 1
Compression:
Stored size: 1.55 KB
Contents
require File.dirname(__FILE__) + '/../../../test_helper' class NochexHelperTest < Test::Unit::TestCase include MerbMerchant::Billing::Integrations def setup @helper = Nochex::Helper.new('order-500','cody@example.com', :amount => 500, :currency => 'GBP') end def test_basic_helper_fields assert_field 'email', 'cody@example.com' # Nochex requires 2 decimal places on the amount assert_field 'amount', '5.00' assert_field 'ordernumber', 'order-500' end def test_customer_fields @helper.customer :first_name => 'Cody', :last_name => 'Fauser', :email => 'cody@example.com' assert_field 'firstname', 'Cody' assert_field 'lastname', 'Fauser' assert_field 'email_address_sender', 'cody@example.com' end def test_address_mapping @helper.billing_address :address1 => '1 My Street', :city => 'Leeds', :state => 'Yorkshire', :zip => 'LS2 7EE' assert_field 'firstline', '1 My Street' assert_field 'town', 'Leeds' assert_field 'county', 'Yorkshire' assert_field 'postcode', 'LS2 7EE' end def test_unknown_address_mapping @helper.billing_address :country => 'CA' assert_equal 3, @helper.fields.size end def test_unknown_mapping assert_nothing_raised do @helper.company_address :address => '500 Dwemthy Fox Road' end end def test_setting_invalid_address_field fields = @helper.fields.dup @helper.billing_address :street => 'My Street' assert_equal fields, @helper.fields end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merb_merchant-1.4.1 | test/unit/integrations/helpers/nochex_helper_test.rb |