Fabrice Reix

Results 31 issues of Fabrice Reix

Add curl option `--resolve` (https://curl.se/docs/manpage.html#--resolve)

enhancement

It would be great if Hurl could be packaged in the official Arch Linux Core repository. under https://archlinux.org/packages/core/x86_64/hurl/

help wanted
linux
installation

enhancement
topic: reports
topic: options

Currently variables can be set within a Hurl File by "capturing" a value from a response (in a [Captures] section). It could useful to set them explicitly/directly (without captures).

enhancement

Variables defined in the last one will override the one defined in a previous file. ``` hurl --variable-file common.properties --variable-file specific.properties test.hurl ```

enhancement

enhancement
open-to-contribution
help wanted
linux

open-to-contribution
help wanted
linux
installation

Currently the `url` crate is used to parse url in a hurl file, for example, to extract the host part. Libcurl could be used for that parsing, that would reduce...

Here is a typical assert error in hurl. ``` error: Assert Failure --> tests/error_assert_value_error.hurl:8:0 | 8 | jsonpath "$.count" greaterThan 5 | actual: int | expected: greater than int |...

enhancement

Response body can be tested directly without explicit asserts as follow: ``` test.hurl 1 GET http://example.com/text 2 HTTP/1.1 200 3 ``` 4 one 5 two 6 three 7 ``` ```...

enhancement