diff --git a/tests/inputs/mbr.bin b/tests/inputs/mbr.bin new file mode 100644 index 000000000..292e7b196 Binary files /dev/null and b/tests/inputs/mbr.bin differ diff --git a/tests/mbr.rs b/tests/mbr.rs new file mode 100644 index 000000000..afbd78460 --- /dev/null +++ b/tests/mbr.rs @@ -0,0 +1,8 @@ +mod common; + +#[test] +fn integration_test() { + const SIGNATURE_TYPE: &str = "mbr"; + const INPUT_FILE_NAME: &str = "mbr.bin"; + common::integration_test(SIGNATURE_TYPE, INPUT_FILE_NAME); +}