16 lines
222 B
Rust
16 lines
222 B
Rust
// Standard Uses
|
|
|
|
// Crate Uses
|
|
use crate::package::TEST_PACKAGE_DIR;
|
|
|
|
// External Uses
|
|
use comline::project;
|
|
|
|
|
|
#[test]
|
|
fn build_package() {
|
|
let built = project::build::build(&TEST_PACKAGE_DIR);
|
|
|
|
built.unwrap();
|
|
}
|