Skip to content

Commit

Permalink
Added tests for split_string and consolidate_stats.
Browse files Browse the repository at this point in the history
  • Loading branch information
williamrowell committed Nov 20, 2024
1 parent 9648fae commit 4c588bc
Showing 1 changed file with 39 additions and 2 deletions.
41 changes: 39 additions & 2 deletions wdl-ci.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -984,12 +984,49 @@
"split_string": {
"key": "split_string",
"digest": "",
"tests": []
"tests": [
{
"inputs": {
"concatenated_string": "hello,hello",
"delimiter": ",",
"runtime_attributes": "${default_runtime_attributes}"
},
"output_tests": {
"output_key": {
"value": "hello",
"test_tasks": [
"compare_string"
]
}
}
}
]
},
"consolidate_stats": {
"key": "consolidate_stats",
"digest": "",
"tests": []
"tests": [
{
"inputs": {
"id": "String",
"stats": {
"letters": ["a", "b", "c"],
"numbers": ["1", "2", "3"]
},
"runtime_attributes": "${default_runtime_attributes}"
},
"output_tests": {
"output_tsv": {
"value": "${resources_file_path}/consolidate_stats/String.stats.txt",
"test_tasks": [
"compare_file_basename",
"check_tab_delimited",
"count_columns"
]
}
}
}
]
}
}
},
Expand Down

0 comments on commit 4c588bc

Please sign in to comment.