more unit tests working.

imgui drawing directly to background now
This commit is contained in:
2024-10-30 12:00:33 -04:00
parent 011874bca6
commit d8b14fa084
10 changed files with 506 additions and 383 deletions
+1
View File
@@ -31,6 +31,7 @@ fn main() {
}
}
#[cfg(test)]
mod test {
use pest::Parser;
use crate::{Chip8AsmParser, Rule};
-10
View File
@@ -79,14 +79,4 @@ fn main() {
std::fs::write(target, decompiled_program).unwrap();
}
}
}
mod test {
#[test]
fn smoke() { assert!(true); }
#[test]
fn assemble_test_file() {
}
}
-3
View File
@@ -1,3 +0,0 @@
#[test]
fn smoke() { assert!(true) }