mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 19:11:47 +01:00
kjuulh
f29ff836cf
Option has been removed as a wrapper around opts. This makes it much more convenient to use ```rust client.container_opts(Some(ContainerOpts{})) // -> client.container_opts(ContainerOpts{}) ``` The same options are still available, either an empty object can be passed, or a non _opts function can be used
21 lines
483 B
Rust
21 lines
483 B
Rust
use dagger_sdk::{connect, ContainerExecOptsBuilder};
|
|
|
|
#[test]
|
|
fn test_example_container() {
|
|
let client = connect().unwrap();
|
|
|
|
let alpine = client.container().from("alpine:3.16.2");
|
|
|
|
let out = alpine
|
|
.exec_opts(
|
|
ContainerExecOptsBuilder::default()
|
|
.args(vec!["cat", "/etc/alpine-release"])
|
|
.build()
|
|
.unwrap(),
|
|
)
|
|
.stdout()
|
|
.unwrap();
|
|
|
|
assert_eq!(out, "3.16.2\n".to_string())
|
|
}
|