Skip to content

Commit 96dfb53

Browse files
committed
Migrate integ test to unit scripts
1 parent b1c6206 commit 96dfb53

File tree

173 files changed

+444
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+444
-79
lines changed

bin/test/test_integ.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ cd integration || exit
1414
./integration.py
1515
./test_curl_commands.sh
1616
./test_html_output.py tests_ok/*.html tests_failed/*.html
17-
./report.py
17+
#./report.py TODO: review test report
1818

integration/integration.py

-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ def main():
2626
[test_lint.test(f) for f in get_files("tests_error_lint/*.hurl")]
2727
[test_hurl.test(f) for f in get_files("tests_error_parser/*.hurl")]
2828

29-
# Dynamic run (with server)
30-
[test_hurl.test(f) for f in get_files("tests_ok/*.hurl") if accept(f)]
3129
# Run test scripts
3230
extension = "ps1" if platform.system() == "Windows" else "sh"
3331
script_files = (
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_base64.hurl --verbose

integration/tests_ok/assert_base64.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_base64.hurl --verbose

integration/tests_ok/assert_header.options

-1
This file was deleted.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_header.hurl --json --verbose

integration/tests_ok/assert_header.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_header.hurl --json --verbose

integration/tests_ok/assert_json.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_json.hurl --verbose

integration/tests_ok/assert_json.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_json.hurl --verbose

integration/tests_ok/assert_match.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_match.hurl --verbose

integration/tests_ok/assert_match.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_match.hurl --verbose

integration/tests_ok/assert_regex.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_regex.hurl --verbose

integration/tests_ok/assert_regex.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_regex.hurl --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_status_code.hurl --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_status_code.hurl --verbose

integration/tests_ok/assert_xpath.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/assert_xpath.hurl --verbose

integration/tests_ok/assert_xpath.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/assert_xpath.hurl --verbose

integration/tests_ok/basic_authentication.options

-2
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/basic_authentication.hurl --user bob@email.com:secret --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/basic_authentication.hurl --user bob@email.com:secret --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/basic_authentication_per_request.hurl --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/basic_authentication_per_request.hurl --verbose

integration/tests_ok/bom.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/bom.hurl --verbose

integration/tests_ok/bom.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/bom.hurl --verbose

integration/tests_ok/bytes.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/bytes.hurl --verbose

integration/tests_ok/bytes.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/bytes.hurl --verbose

integration/tests_ok/bytes_empty.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/bytes_empty.hurl

integration/tests_ok/bytes_empty.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/bytes_empty.hurl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/capture_and_assert.hurl --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/capture_and_assert.hurl --verbose

integration/tests_ok/captures.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/captures.hurl --verbose

integration/tests_ok/captures.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/captures.hurl --verbose

integration/tests_ok/charset.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/charset.hurl

integration/tests_ok/charset.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/charset.hurl

integration/tests_ok/color.options

-1
This file was deleted.

integration/tests_ok/color.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/color.hurl --color --verbose

integration/tests_ok/color.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/color.hurl --color --verbose

integration/tests_ok/compressed.options

-1
This file was deleted.

integration/tests_ok/compressed.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/compressed.hurl --compressed --verbose

integration/tests_ok/compressed.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/compressed.hurl --compressed --verbose

integration/tests_ok/connect_to.options

-6
This file was deleted.

integration/tests_ok/connect_to.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
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

integration/tests_ok/connect_to.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
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

integration/tests_ok/cookie_file.options

-2
This file was deleted.

integration/tests_ok/cookie_file.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/cookie_file.hurl --cookie tests_ok/cookie_file.cookies --verbose

integration/tests_ok/cookie_file.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/cookie_file.hurl --cookie tests_ok/cookie_file.cookies --verbose
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/cookie_storage.hurl --verbose
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/cookie_storage.hurl --verbose

integration/tests_ok/cookies.options

-3
This file was deleted.

integration/tests_ok/cookies.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/cookies.hurl --variable name=Bruce --verbose

integration/tests_ok/cookies.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/cookies.hurl --variable name=Bruce --verbose

integration/tests_ok/delete.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/delete.hurl --verbose

integration/tests_ok/delete.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/delete.hurl --verbose

integration/tests_ok/deprecated.err

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
warning: tests_ok/deprecated.hurl:3:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
22
warning: tests_ok/deprecated.hurl:7:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
3-
warning: tests_ok/deprecated.hurl:8:4 '```Hello World!```' response body is deprecated, please use '`Hello World!`' instead
3+
warning: tests_ok/deprecated.hurl:8:4 '```Hello World!```' response body is deprecated, please use '`Hello World!`' instead

integration/tests_ok/deprecated.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/deprecated.hurl

integration/tests_ok/deprecated.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/deprecated.hurl

integration/tests_ok/empty.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/empty.hurl --verbose

integration/tests_ok/empty.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/empty.hurl --verbose

integration/tests_ok/encoding.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/encoding.hurl --verbose

integration/tests_ok/encoding.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/encoding.hurl --verbose

integration/tests_ok/env_var.ps1

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
set HURL_name=Bob
4+
hurl tests_ok/env_var.hurl

integration/tests_ok/env_var.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
export HURL_name=Bob
4+
hurl tests_ok/env_var.hurl

integration/tests_ok/expect.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/expect.hurl --verbose

integration/tests_ok/expect.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/expect.hurl --verbose

integration/tests_ok/filter.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/filter.hurl

integration/tests_ok/filter.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/filter.hurl

integration/tests_ok/float.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/float.hurl

integration/tests_ok/float.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/float.hurl

integration/tests_ok/follow_redirect.options

-1
This file was deleted.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/follow_redirect.hurl --location --verbose
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/follow_redirect.hurl --location --verbose

integration/tests_ok/form_params.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/form_params.hurl --verbose

integration/tests_ok/form_params.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/form_params.hurl --verbose

integration/tests_ok/graphql.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/graphql.hurl --verbose

integration/tests_ok/graphql.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/graphql.hurl --verbose

integration/tests_ok/head.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/head.hurl --verbose

integration/tests_ok/head.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/head.hurl --verbose

integration/tests_ok/headers.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/headers.hurl

integration/tests_ok/headers.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/headers.hurl

integration/tests_ok/hello.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/hello.hurl --verbose

integration/tests_ok/hello.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/hello.hurl --verbose

integration/tests_ok/ignore_asserts.options

-1
This file was deleted.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/ignore_asserts.hurl --ignore-asserts
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/ignore_asserts.hurl --ignore-asserts

integration/tests_ok/include.options

-1
This file was deleted.

integration/tests_ok/include.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/include.hurl --include --verbose

integration/tests_ok/include.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/include.hurl --include --verbose

integration/tests_ok/json_output.options

-1
This file was deleted.

integration/tests_ok/json_output.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/json_output.hurl --json --verbose

integration/tests_ok/json_output.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/json_output.hurl --json --verbose

integration/tests_ok/large.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/large.hurl --verbose

integration/tests_ok/large.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/large.hurl --verbose

integration/tests_ok/method.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/method.hurl --verbose

integration/tests_ok/method.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/method.hurl --verbose

integration/tests_ok/multilines.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/multilines.hurl --verbose

integration/tests_ok/multilines.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/multilines.hurl --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/multipart_form_data.hurl --verbose
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
set -Eeuo pipefail
3+
hurl tests_ok/multipart_form_data.hurl --verbose

integration/tests_ok/no_entry.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Set-StrictMode -Version latest
2+
$ErrorActionPreference = 'Stop'
3+
hurl tests_ok/no_entry.hurl --verbose

0 commit comments

Comments
 (0)