flux-releaser/crates/flux-releaser/tests/flux_local_cluster_manager_tests.rs
kjuulh d35f5c8f22
Some checks failed
continuous-integration/drone/push Build is failing
feat: add actual upload
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-02-19 22:50:49 +01:00

15 lines
397 B
Rust

use flux_releaser::services::{
archive::Archive, file_reader::FileReader, flux_local_cluster::FluxLocalClusterManager,
};
#[tokio::test]
async fn can_package_files() -> anyhow::Result<()> {
tracing_subscriber::fmt().init();
//let sut = FluxLocalClusterManager::new(FileReader::new(), Archive::new());
//sut.package_clusters("testdata/flux_local_cluster/").await?;
Ok(())
}