Sha256: db7e57c43efc693465b5374b15485e6c5b8f0eab5715a5b7c08dacb79c2f3010
Contents?: true
Size: 738 Bytes
Versions: 16
Compression:
Stored size: 738 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper") describe Braintree::Transaction::CustomerDetails do describe "inspect" do it "inspects" do details = Braintree::Transaction::CustomerDetails.new( :id => "id", :first_name => "Amy", :last_name => "Smith", :email => "amy.smith@example.com", :company => "Smith Co.", :website => "http://www.example.com", :phone => "6145551234", :fax => "3125551234", ) details.inspect.should == %(#<id: "id", first_name: "Amy", last_name: "Smith", email: "amy.smith@example.com", company: "Smith Co.", website: "http://www.example.com", phone: "6145551234", fax: "3125551234">) end end end
Version data entries
16 entries across 16 versions & 1 rubygems