Skip to content

Commit

Permalink
Remove unused method.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe Berke-Williams committed Nov 3, 2011
1 parent 8eb5988 commit e1a886c
Showing 1 changed file with 0 additions and 81 deletions.
81 changes: 0 additions & 81 deletions lib/fake_braintree.rb
Expand Up @@ -96,87 +96,6 @@ def self.credit_card_from_token(token)
return card if card
end
end

def self.generated_transaction
{"status_history"=>[{"timestamp"=>Time.now,
"amount"=>FakeBraintree.transaction[:amount],
"transaction_source"=>"CP",
"user"=>"copycopter",
"status"=>"authorized"},
{"timestamp"=>Time.now,
"amount"=>FakeBraintree.transaction[:amount],
"transaction_source"=>"CP",
"user"=>"copycopter",
"status"=>FakeBraintree.transaction[:status]}],
"created_at"=>(FakeBraintree.transaction[:created_at] || Time.now),
"currency_iso_code"=>"USD",
"settlement_batch_id"=>nil,
"processor_authorization_code"=>"ZKB4VJ",
"avs_postal_code_response_code"=>"I",
"order_id"=>nil,
"updated_at"=>Time.now,
"refunded_transaction_id"=>nil,
"amount"=>FakeBraintree.transaction[:amount],
"credit_card"=>{"last_4"=>"1111",
"card_type"=>"Visa",
"token"=>"8yq7",
"customer_location"=>"US",
"expiration_year"=>"2013",
"expiration_month"=>"02",
"bin"=>"411111",
"cardholder_name"=>"Chad Lee Pytel"
},
"refund_id"=>nil,
"add_ons"=>[],
"shipping"=>{"region"=>nil,
"company"=>nil,
"country_name"=>nil,
"extended_address"=>nil,
"postal_code"=>nil,
"id"=>nil,
"street_address"=>nil,
"country_code_numeric"=>nil,
"last_name"=>nil,
"locality"=>nil,
"country_code_alpha2"=>nil,
"country_code_alpha3"=>nil,
"first_name"=>nil},
"id"=>"49sbx6",
"merchant_account_id"=>"Thoughtbot",
"type"=>"sale",
"cvv_response_code"=>"I",
"subscription_id"=>FakeBraintree.transaction[:subscription_id],
"custom_fields"=>"\n",
"discounts"=>[],
"billing"=>{"region"=>nil,
"company"=>nil,
"country_name"=>nil,
"extended_address"=>nil,
"postal_code"=>nil,
"id"=>nil,
"street_address"=>nil,
"country_code_numeric"=>nil,
"last_name"=>nil,
"locality"=>nil,
"country_code_alpha2"=>nil,
"country_code_alpha3"=>nil,
"first_name"=>nil},
"processor_response_code"=>"1000",
"refund_ids"=>[],
"customer"=>{"company"=>nil,
"id"=>"108427",
"last_name"=>nil,
"fax"=>nil,
"phone"=>nil,
"website"=>nil,
"first_name"=>nil,
"email"=>"cpytel@thoughtbot.com" },
"avs_error_response_code"=>nil,
"processor_response_text"=>"Approved",
"avs_street_address_response_code"=>"I",
"status"=>FakeBraintree.transaction[:status],
"gateway_rejection_reason"=>nil}
end
end

FakeBraintree.activate!
Expand Down

0 comments on commit e1a886c

Please sign in to comment.