Esempio n. 1
0
 def setUp(self):
     app.config["SKIP_AUTHENTICATION"] = False  # monkey patch
     self.app = app.test_client()
     
     self.btctxstore = BtcTxStore()
     
     db.create_all()
Esempio n. 2
0
    def setUp(self):
        app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
        app.config["DISABLE_CACHING"] = True

        self.btctxstore = BtcTxStore()
        self.bad_addr = 'notvalidaddress'

        self.app = app.test_client()
        db.create_all()
Esempio n. 3
0
 def setUp(self):
     app.config["SKIP_AUTHENTICATION"] = False  # monkey patch
     self.app = app.test_client()
     db.create_all()
Esempio n. 4
0
    def setUp(self):
        app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
        app.config["DISABLE_CACHING"] = True

        self.app = app.test_client()
        db.create_all()
Esempio n. 5
0
    def setUp(self):
        app.config["SKIP_AUTHENTICATION"] = True  # monkey patch
        app.config["DISABLE_CACHING"] = True

        self.app = app.test_client()
        db.create_all()
Esempio n. 6
0
 def setUp(self):
     self.app = app.test_client()
     db.create_all()
Esempio n. 7
0
 def setUp(self):
     self.app = app.test_client()
     db.create_all()