14 lines
407 B
Bash
Executable file
14 lines
407 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Test configure
|
|
generate_number_job.cfg pippin salem sadie
|
|
|
|
# Test run
|
|
generate_number_job.cfg pippin | generate_number_job.exec
|
|
# Validate that contents of pippin is 43
|
|
if [[ "$(cat /tmp/databuild/examples/basic_graph/generated_number/pippin)" != "43" ]]; then
|
|
echo "Assertion failed: File does not contain 43"
|
|
cat /tmp/databuild/examples/basic_graph/generated_number/pippin
|
|
exit 1
|
|
fi
|
|
|