7 lines
121 B
Python
7 lines
121 B
Python
from pecan import load_app
|
|
from webtest import TestApp
|
|
|
|
|
|
def load_test_app(config):
|
|
return TestApp(load_app(config))
|