ucg/integration_tests/include_test.ucg
Jeremy Wall a830047784 FEATURE: Add include as a string functionality.
Includes happy path tests for including a string.

fixes #15
2019-01-04 10:03:50 -06:00

5 lines
115 B
Plaintext

let script = include str "./include_example.sh";
assert |
script == "#!/usr/bin/env bash
echo \"included\"";
|;