Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test coverage of compound bash commands (#234)
The `Procfile` format supports specifying compound bash commands like: ``` web: foo && bar ``` This buildpack currently supports these, however, there is no integration test coverage of them. Having coverage is important, since some of the approaches for implementing the `bash -c` wrapping don't support usage of compound commands, as seen in: #150 (comment) As such I've added a new integration test for this, which also tests quoting (in case a future buildpack implementation starts trying to parse/escape the commands) and variable interpolation. This test case was extracted from #150 (which itself was superseded).
- Loading branch information