fixed issue with STI on non-tables

This commit is contained in:
2026-05-12 08:22:25 -04:00
parent 6cc4f4ad86
commit 1fb378def2
6 changed files with 164 additions and 147 deletions

View File

@ -1619,6 +1619,24 @@ fn test_polymorphism_5_2() {
crate::tests::runner::run_test_case(&path, 5, 2).unwrap();
}
#[test]
fn test_polymorphism_6_0() {
let path = format!("{}/fixtures/polymorphism.json", env!("CARGO_MANIFEST_DIR"));
crate::tests::runner::run_test_case(&path, 6, 0).unwrap();
}
#[test]
fn test_polymorphism_6_1() {
let path = format!("{}/fixtures/polymorphism.json", env!("CARGO_MANIFEST_DIR"));
crate::tests::runner::run_test_case(&path, 6, 1).unwrap();
}
#[test]
fn test_polymorphism_6_2() {
let path = format!("{}/fixtures/polymorphism.json", env!("CARGO_MANIFEST_DIR"));
crate::tests::runner::run_test_case(&path, 6, 2).unwrap();
}
#[test]
fn test_not_0_0() {
let path = format!("{}/fixtures/not.json", env!("CARGO_MANIFEST_DIR"));