Ejemplo n.º 1
0
 def get_app(self):
     o = webmaster.Options()
     m = webmaster.WebMaster(o, proxy.DummyServer())
     return app.Application(m, None, None)
Ejemplo n.º 2
0
 def get_app(self):
     o = master.Options()
     m = master.WebMaster(None, o)
     return app.Application(m, None, None)
Ejemplo n.º 3
0
 def mkmaster(self, filt, **options):
     o = master.Options(filtstr=filt, **options)
     return master.WebMaster(None, o)
Ejemplo n.º 4
0
 def mkmaster(self, **options):
     o = master.Options(**options)
     return master.WebMaster(None, o)
Ejemplo n.º 5
0
 def mkmaster(self, **options):
     o = master.Options(**options)
     return master.WebMaster(o, proxy.DummyServer(o))