sql-orm 0.1.0

Public API crate for the sql-orm workspace.
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn active_record_ui() {
    let tests = trybuild::TestCases::new();

    tests.pass("tests/ui/active_record_public_valid.rs");
    tests.pass("tests/ui/active_record_delete_public_valid.rs");
    tests.pass("tests/ui/active_record_save_public_valid.rs");
    tests.compile_fail("tests/ui/active_record_missing_entity_set.rs");
}