fix: make sure tests have a command to execute

This commit is contained in:
Kasper Juul Hermansen 2023-03-13 20:59:25 +01:00
parent 01f807b150
commit c3a43d1a80
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -13,6 +13,7 @@ async fn test_issue_30_alt() -> eyre::Result<()> {
platform: Some(platform.to_string().into()),
})
.from("alpine")
.with_exec(vec!["echo", "'hello'"])
.exit_code()
.await?;
@ -35,6 +36,7 @@ async fn test_issue_30() -> eyre::Result<()> {
.unwrap(),
)
.from("alpine")
.with_exec(vec!["echo", "'hello'"])
.exit_code()
.await?;