hurl/integration/tests_ok/delay_option.err.pattern
Guilherme Puida 90576a9620
Use get_non_default_options to filter logs
This uses the previously created get_non_default_options instead of
inline logic when logging runner options.

Also fixes integration tests.
2023-09-28 15:11:44 -03:00

60 lines
1.1 KiB
Plaintext

* ------------------------------------------------------------------------------
* Executing entry 1
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/delay-init
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/delay-init'
*
> GET /delay-init HTTP/1.1
> Host: localhost:8000
> Accept: */*
> User-Agent: hurl/~~~
>
* Response: (received 0 bytes in ~~~ ms)
*
< HTTP/1.1 200 OK
< Server: ~~~
< Date: ~~~
< Content-Type: text/html; charset=utf-8
< Content-Length: 0
< Server: Flask Server
< Connection: close
<
*
* ------------------------------------------------------------------------------
* Executing entry 2
*
* Entry options:
* delay: 1000
*
* Delay entry 2 (x1 by 1000 ms)
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/delay
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/delay'
*
> GET /delay HTTP/1.1
> Host: localhost:8000
> Accept: */*
> User-Agent: hurl/~~~
>
* Response: (received 0 bytes in ~~~ ms)
*
< HTTP/1.1 200 OK
< Server: ~~~
< Date: ~~~
< Content-Type: text/html; charset=utf-8
< Content-Length: 0
< Server: Flask Server
< Connection: close
<
*