tests: Executable for testing layouts

This commit is contained in:
Dorota Czaplejewicz
2019-11-19 09:47:32 +00:00
parent f834f174d8
commit 9571adb107
6 changed files with 103 additions and 73 deletions

8
src/bin/test_layout.rs Normal file
View File

@ -0,0 +1,8 @@
extern crate rs;
use rs::tests::check_layout_file;
use std::env;
fn main() -> () {
check_layout_file(env::args().nth(1).expect("No argument given").as_str());
}