libcnb-test 0.30.4

An integration testing framework for buildpacks written with libcnb.rs
Documentation
#![doc = include_str!("../README.md")]

mod app;
mod build;
mod build_config;
mod container_config;
mod container_context;
mod docker;
mod log;
mod macros;
mod pack;
mod test_context;
mod test_runner;
mod util;

pub use crate::build_config::*;
pub use crate::container_config::*;
pub use crate::container_context::*;
pub use crate::log::*;
pub use crate::test_context::*;
pub use crate::test_runner::*;

// Suppress warnings due to the `unused_crate_dependencies` lint not handling integration tests well.
#[cfg(test)]
use indoc as _;
#[cfg(test)]
use libcnb as _;
#[cfg(test)]
use ureq as _;
// This dependency is used by the `assert_not_contains` and `assert_not_contains_match` macros
use regex as _;