Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/test/test_integ.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ cd integration || exit
./integration.py
./test_curl_commands.sh
./test_html_output.py tests_ok/*.html tests_failed/*.html
./report.py
#./report.py TODO: review test report

2 changes: 0 additions & 2 deletions integration/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ def main():
[test_lint.test(f) for f in get_files("tests_error_lint/*.hurl")]
[test_hurl.test(f) for f in get_files("tests_error_parser/*.hurl")]

# Dynamic run (with server)
[test_hurl.test(f) for f in get_files("tests_ok/*.hurl") if accept(f)]
# Run test scripts
extension = "ps1" if platform.system() == "Windows" else "sh"
script_files = (
Expand Down
2 changes: 1 addition & 1 deletion integration/ssl/letsencrypt.hurl
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ HTTP 200
certificate "Subject" == "CN=hurl.dev"
certificate "Issuer" == "C=US, O=Let's Encrypt, CN=R3"
certificate "Expire-Date" daysAfterNow > 15
certificate "Serial-Number" == "03:db:c4:f3:c8:5e:13:66:cc:52:a3:69:2c:fa:04:a0:7b:b1"
certificate "Serial-Number" matches "[0-9af]+"
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_base64.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_base64.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_base64.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_base64.hurl --verbose
1 change: 0 additions & 1 deletion integration/tests_ok/assert_header.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/assert_header.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_header.hurl --json --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_header.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_header.hurl --json --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_json.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_json.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_json.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_json.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_match.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_match.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_match.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_match.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_regex.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_regex.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_regex.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_regex.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_status_code.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_status_code.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_status_code.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_status_code.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_xpath.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/assert_xpath.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/assert_xpath.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/assert_xpath.hurl --verbose
2 changes: 0 additions & 2 deletions integration/tests_ok/basic_authentication.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/basic_authentication.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/basic_authentication.hurl --user [email protected]:secret --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/basic_authentication.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/basic_authentication.hurl --user [email protected]:secret --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/basic_authentication_per_request.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/basic_authentication_per_request.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/basic_authentication_per_request.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/basic_authentication_per_request.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/bom.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/bom.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/bom.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/bom.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/bytes.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/bytes.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/bytes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/bytes.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/bytes_empty.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/bytes_empty.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/bytes_empty.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/bytes_empty.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/capture_and_assert.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/capture_and_assert.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/capture_and_assert.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/capture_and_assert.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/captures.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/captures.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/captures.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/captures.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/charset.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/charset.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/charset.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/charset.hurl
1 change: 0 additions & 1 deletion integration/tests_ok/color.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/color.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/color.hurl --color --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/color.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/color.hurl --color --verbose
1 change: 0 additions & 1 deletion integration/tests_ok/compressed.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/compressed.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/compressed.hurl --compressed --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/compressed.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/compressed.hurl --compressed --verbose
6 changes: 0 additions & 6 deletions integration/tests_ok/connect_to.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/connect_to.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/connect_to.hurl --connect-to foo.com:80:localhost:8000 --connect-to bar.com:80:localhost:8000 --connect-to baz.com:80:localhost:8000 --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/connect_to.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/connect_to.hurl --connect-to foo.com:80:localhost:8000 --connect-to bar.com:80:localhost:8000 --connect-to baz.com:80:localhost:8000 --verbose
2 changes: 0 additions & 2 deletions integration/tests_ok/cookie_file.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/cookie_file.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/cookie_file.hurl --cookie tests_ok/cookie_file.cookies --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/cookie_file.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/cookie_file.hurl --cookie tests_ok/cookie_file.cookies --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/cookie_storage.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/cookie_storage.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/cookie_storage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/cookie_storage.hurl --verbose
3 changes: 0 additions & 3 deletions integration/tests_ok/cookies.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/cookies.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/cookies.hurl --variable name=Bruce --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/cookies.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/cookies.hurl --variable name=Bruce --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/delete.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/delete.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/delete.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/delete.hurl --verbose
2 changes: 1 addition & 1 deletion integration/tests_ok/deprecated.err
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
warning: tests_ok/deprecated.hurl:3:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
warning: tests_ok/deprecated.hurl:7:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
warning: tests_ok/deprecated.hurl:8:4 '```Hello World!```' response body is deprecated, please use '`Hello World!`' instead
warning: tests_ok/deprecated.hurl:8:4 '```Hello World!```' response body is deprecated, please use '`Hello World!`' instead
3 changes: 3 additions & 0 deletions integration/tests_ok/deprecated.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/deprecated.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/deprecated.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/deprecated.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/empty.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/empty.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/empty.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/empty.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/encoding.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/encoding.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/encoding.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/encoding.hurl --verbose
4 changes: 4 additions & 0 deletions integration/tests_ok/env_var.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
$env:HURL_name = 'Bob'
hurl tests_ok/env_var.hurl
4 changes: 4 additions & 0 deletions integration/tests_ok/env_var.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
set -Eeuo pipefail
export HURL_name=Bob
hurl tests_ok/env_var.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/expect.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/expect.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/expect.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/expect.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/filter.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/filter.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/filter.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/filter.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/float.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/float.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/float.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/float.hurl
1 change: 0 additions & 1 deletion integration/tests_ok/follow_redirect.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/follow_redirect.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/follow_redirect.hurl --location --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/follow_redirect.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/follow_redirect.hurl --location --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/form_params.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/form_params.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/form_params.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/form_params.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/graphql.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/graphql.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/graphql.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/graphql.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/head.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/head.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/head.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/head.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/headers.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/headers.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/headers.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/headers.hurl
3 changes: 3 additions & 0 deletions integration/tests_ok/hello.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/hello.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/hello.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/hello.hurl --verbose
1 change: 0 additions & 1 deletion integration/tests_ok/ignore_asserts.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/ignore_asserts.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/ignore_asserts.hurl --ignore-asserts
3 changes: 3 additions & 0 deletions integration/tests_ok/ignore_asserts.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/ignore_asserts.hurl --ignore-asserts
1 change: 0 additions & 1 deletion integration/tests_ok/include.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/include.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/include.hurl --include --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/include.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/include.hurl --include --verbose
1 change: 0 additions & 1 deletion integration/tests_ok/json_output.options

This file was deleted.

3 changes: 3 additions & 0 deletions integration/tests_ok/json_output.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/json_output.hurl --json --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/json_output.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/json_output.hurl --json --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/large.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/large.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/large.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/large.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/method.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/method.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/method.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/method.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/multilines.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/multilines.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/multilines.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/multilines.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/multipart_form_data.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
hurl tests_ok/multipart_form_data.hurl --verbose
3 changes: 3 additions & 0 deletions integration/tests_ok/multipart_form_data.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -Eeuo pipefail
hurl tests_ok/multipart_form_data.hurl --verbose
Loading