gdnative-project-utils 0.1.4

Utilies for working with godot-rust GDNative projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
use gdnative_project_utils::*;

#[test]
fn scanning() {
    let res = scan_crate("tests/project_stub").expect("Scanning should work");

    assert_eq!(res.len(), 3);
    assert!(res.contains("Test"));
    assert!(res.contains("MoreTest"));
    assert!(res.contains("EvenMoreTest"));
}