19 lines
376 B
Rust
19 lines
376 B
Rust
// Standard Uses
|
|
|
|
// Crate Uses
|
|
use crate::package::TEST_PACKAGE_CFG_PATH;
|
|
|
|
// External Uses
|
|
use comline::project::ir::compiler::Compile;
|
|
use comline::project::ir::interpreter::Interpreter;
|
|
|
|
|
|
#[allow(unused)]
|
|
#[test]
|
|
fn compile_package() {
|
|
let compiled = Interpreter::from_origin(&TEST_PACKAGE_CFG_PATH);
|
|
|
|
todo!()
|
|
// pretty_assertions::assert_eq!(compiled, ());
|
|
}
|