Private
Public Access
1
0

Merge branch 'release/v9.03'

This commit is contained in:
Sander Roosendaal
2019-01-02 16:18:56 +01:00
106 changed files with 91 additions and 65 deletions
+4
View File
@@ -9,6 +9,10 @@
/build/
/docs/
# coverage folder
/htmlcov/
.coverage
# CSV files
/media/
+2 -1
View File
@@ -23,7 +23,8 @@ from rowsandall_app.settings import (
gateway = braintree.BraintreeGateway(
braintree.Configuration(
braintree.Environment.Sandbox,
# braintree.Environment.Sandbox,
braintree.Environment.Production,
merchant_id=BRAINTREE_MERCHANT_ID,
public_key=BRAINTREE_PUBLIC_KEY,
private_key=BRAINTREE_PRIVATE_KEY,
+21
View File
@@ -0,0 +1,21 @@
pkg_mox = None
def setUpPackage():
global pkg_mox
import urllib
import urllib2
import mox
import requests
pkg_mox = mox.Mox()
pkg_mox.StubOutWithMock(requests.api.sessions.Session, 'send')
pkg_mox.StubOutWithMock(urllib.URLopener, 'open')
pkg_mox.StubOutWithMock(urllib2.OpenerDirector, 'open')
pkg_mox.ReplayAll()
def tearDownPackage():
pkg_mox.VerifyAll()
pkg_mox.UnsetStubs()
from tests import *
Can't render this file because it is too large.
Can't render this file because it is too large.

Some files were not shown because too many files have changed in this diff Show More