mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 15:53:13 +01:00
f3b500119c
* Initial metadata processing * Dynamic coloring and other stuff * Use -vv / --meta * More testing * Cleanup * Tweek message Co-authored-by: Jakub Roztocil <jakub@roztocil.co>
8 lines
184 B
Python
8 lines
184 B
Python
from .utils import http
|
|
|
|
|
|
def test_meta_elapsed_time(httpbin, monkeypatch):
|
|
r = http('--meta', httpbin + '/get')
|
|
for line in r.splitlines():
|
|
assert 'Elapsed time' in r
|