all jspg tests now passing
This commit is contained in:
4
build.rs
4
build.rs
@ -26,11 +26,11 @@ fn main() {
|
||||
|
||||
// File 1: src/tests/fixtures.rs for #[pg_test]
|
||||
let pg_dest_path = Path::new("src/tests/fixtures.rs");
|
||||
let mut pg_file = File::create(&pg_dest_path).unwrap();
|
||||
let mut pg_file = File::create(pg_dest_path).unwrap();
|
||||
|
||||
// File 2: tests/fixtures.rs for standard #[test] integration
|
||||
let std_dest_path = Path::new("tests/fixtures.rs");
|
||||
let mut std_file = File::create(&std_dest_path).unwrap();
|
||||
let mut std_file = File::create(std_dest_path).unwrap();
|
||||
|
||||
// Write headers
|
||||
writeln!(std_file, "use jspg::validator::util;").unwrap();
|
||||
|
||||
Reference in New Issue
Block a user