spec/integration/spec_helper.rb in braintree-3.2.0 vs spec/integration/spec_helper.rb in braintree-3.3.0
- old
+ new
@@ -40,11 +40,17 @@
Braintree::Configuration.public_key = old_public_key
Braintree::Configuration.private_key = old_private_key
end
end
- def with_advanced_fraud_integration_merchant(&block)
+ def with_advanced_fraud_kount_integration_merchant(&block)
with_other_merchant("advanced_fraud_integration_merchant_id", "advanced_fraud_integration_public_key", "advanced_fraud_integration_private_key") do
+ block.call
+ end
+ end
+
+ def with_fraud_protection_enterprise_merchant(&block)
+ with_other_merchant("fraud_protection_enterprise_integration_merchant_id", "fraud_protection_enterprise_integration_public_key", "fraud_protection_enterprise_integration_private_key") do
block.call
end
end
def with_altpay_merchant(&block)