diff --git a/test/pathspec/manifest.json b/test/pathspec/manifest.json new file mode 100644 index 0000000..30c06dd --- /dev/null +++ b/test/pathspec/manifest.json @@ -0,0 +1,11 @@ +{ + "http_server": { + "addr": ":9999", + "dir": "../_res", + "testmode": false + }, + "name": "pathspec (@ notation) tests", + "tests": [ + "@sub/subtest_including.json" + ] +} diff --git a/test/pathspec/sub/subtest_including.json b/test/pathspec/sub/subtest_including.json new file mode 100644 index 0000000..3530058 --- /dev/null +++ b/test/pathspec/sub/subtest_including.json @@ -0,0 +1,3 @@ +[ + "@../subtest_included.json" +] diff --git a/test/pathspec/subtest_included.json b/test/pathspec/subtest_included.json new file mode 100644 index 0000000..1631d49 --- /dev/null +++ b/test/pathspec/subtest_included.json @@ -0,0 +1,11 @@ +{ + "name": "an arbitrary test", + "request": { + "server_url": "http://localhost:9999", + "endpoint": "assets/empty.json", + "method": "GET" + }, + "response": { + "statuscode": 200 + } +}