Added /-/metadata /-/plugins /-/inspect, closes #225

This commit is contained in:
Simon Willison 2018-04-18 22:24:48 -07:00
commit b55809a1e2
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52
5 changed files with 111 additions and 14 deletions

View file

@ -29,7 +29,9 @@ def app_client(sql_time_limit_ms=None):
ds.sqlite_functions.append(
('sleep', 1, lambda n: time.sleep(float(n))),
)
yield ds.app().test_client
client = ds.app().test_client
client.ds = ds
yield client
def app_client_longer_time_limit():