mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-10 03:41:42 +01:00
kjuulh
19ed6c267f
this means that you can now use dagger_sdk::connect() instead of dagger_sdk::client::connect();
22 lines
570 B
Rust
22 lines
570 B
Rust
use dagger_sdk::{connect, ContainerExecOpts};
|
|
|
|
#[test]
|
|
fn test_example_container() {
|
|
let client = connect().unwrap();
|
|
|
|
let alpine = client.container(None).from("alpine:3.16.2".into());
|
|
|
|
let out = alpine
|
|
.exec(Some(ContainerExecOpts {
|
|
args: Some(vec!["cat".into(), "/etc/alpine-release".into()]),
|
|
stdin: None,
|
|
redirect_stdout: None,
|
|
redirect_stderr: None,
|
|
experimental_privileged_nesting: None,
|
|
}))
|
|
.stdout()
|
|
.unwrap();
|
|
|
|
assert_eq!(out, "3.16.2\n".to_string())
|
|
}
|