Sha256: 41269cb659c4a08ea697b46e1ecfb3b18764aa4063e5af9dd01c39d1e4752402
Contents?: true
Size: 737 Bytes
Versions: 120
Compression:
Stored size: 737 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
120 entries across 120 versions & 1 rubygems