1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 01:26:14 +02:00
youki/tests/contest/contest/src/utils/mod.rs
Toru Komatsu 464344923f
Name the test tools `contest` (#2486)
* Name the test tools `contest`

Signed-off-by: utam0k <k0ma@utam0k.jp>

* Address the feedbacks

Signed-off-by: utam0k <k0ma@utam0k.jp>

* Fix a build error

Signed-off-by: utam0k <k0ma@utam0k.jp>

* Fix a workflow

Signed-off-by: utam0k <k0ma@utam0k.jp>

* Address the feedbacks

Signed-off-by: utam0k <k0ma@utam0k.jp>

---------

Signed-off-by: utam0k <k0ma@utam0k.jp>
2024-01-12 14:28:47 +05:30

11 lines
351 B
Rust

pub mod support;
pub mod test_utils;
pub use support::{
generate_uuid, get_project_path, get_runtime_path, get_runtimetest_path, prepare_bundle,
set_config, set_runtime_path,
};
pub use test_utils::{
create_container, delete_container, get_state, kill_container, test_inside_container,
test_outside_container, ContainerData, State,
};