# vim:set syntax=perl encoding=utf-8: # Check for backwards-compatible support for exp_date use Test::More tests => 2 + 1; BEGIN { use_ok('Business::OnlinePayment') }; BEGIN { use_ok('XML::Simple', qw(xml_in)) }; my $txn = new Business::OnlinePayment 'InternetSecure', merchant_id => '0000'; $txn->content( action => 'Normal Authorization', card_number => '5111-1111-1111-1111', exp_date => '0704', amount => 13.95, ); is_deeply( xml_in($txn->to_xml), xml_in(<<__EOF__) ); 0000 5111111111111111 07 2004 0 13.95::1::::::{CAD} __EOF__