rbatis-codegen 4.9.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
// 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

    // If this compiles, basic imports work
    let _ = module_path!();
}