rbatis-codegen 4.8.0

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL gen system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Basic test to verify parser_pysql module is accessible

#[test]
fn test_parser_pysql_basic() {
    // This test just verifies that the parser_pysql module is accessible
    // We don't need to test detailed functionality here since that's
    // covered in other tests

    // Just verify module is accessible
    let _module_path = module_path!();

    // If this compiles, basic imports work
    assert!(true);
}