From e3c8f75e634f5a8a7ff11ae6f62f394f4c2da8ea Mon Sep 17 00:00:00 2001 From: Venkat Malladi Date: Thu, 25 Apr 2024 21:13:02 -0500 Subject: [PATCH] Add in integration tests. --- tests/inputs/example.inputs.json | 5 +++++ tests/test.example.yaml | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/inputs/example.inputs.json create mode 100644 tests/test.example.yaml diff --git a/tests/inputs/example.inputs.json b/tests/inputs/example.inputs.json new file mode 100644 index 0000000..5582a53 --- /dev/null +++ b/tests/inputs/example.inputs.json @@ -0,0 +1,5 @@ +{ + "example.hello.name": "Test" + } + + \ No newline at end of file diff --git a/tests/test.example.yaml b/tests/test.example.yaml new file mode 100644 index 0000000..67f2171 --- /dev/null +++ b/tests/test.example.yaml @@ -0,0 +1,7 @@ +- name: test-example + tags: integration + command: miniwdl run -i tests/inputs/example.inputs.json -d test-output/ hello.wdl + files: + - path: test-output/_LAST/stdout.txt + contains: + - 'hello Test!' \ No newline at end of file