Sha256: ca564f908eda0806db77350afd245fbd5c2d2f9c0fbf2da64f55ac95fbb65a5d
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
require File.dirname(__FILE__) + "/../spec_helper" describe Braintree::CreditCardVerification do describe "inspect" do it "is better than the default inspect" do verification = Braintree::CreditCardVerification._new( :status => "verified", :avs_error_response_code => "I", :avs_postal_code_response_code => "I", :avs_street_address_response_code => "I", :cvv_response_code => "I", :processor_response_code => "2000", :processor_response_text => "Do Not Honor", :merchant_account_id => "some_id" ) verification.inspect.should == %(#<Braintree::CreditCardVerification status: "verified", processor_response_code: "2000", processor_response_text: "Do Not Honor", cvv_response_code: "I", avs_error_response_code: "I", avs_postal_code_response_code: "I", avs_street_address_response_code: "I", merchant_account_id: "some_id">) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
braintree-2.3.1 | spec/unit/braintree/credit_card_verification_spec.rb |