Blacksite/third_party/bevy_ufbx/tests/basic_loading.rs
Rbanh b5e561904c
Some checks failed
CI / Format, lint, test, build (push) Has been cancelled
Upgrade to Bevy 0.19 and harden editor workflows
2026-07-09 23:43:47 -04:00

26 lines
629 B
Rust

use bevy::prelude::*;
use bevy_ufbx::FbxPlugin;
#[test]
fn test_plugin_builds() {
let mut app = App::new();
app.add_plugins(MinimalPlugins);
app.add_plugins(AssetPlugin::default());
app.add_plugins(FbxPlugin);
// If we get here without panic, the plugin is properly set up
assert!(true);
}
#[test]
fn test_loader_registration() {
let mut app = App::new();
app.add_plugins(MinimalPlugins);
app.add_plugins(AssetPlugin::default());
app.add_plugins(FbxPlugin);
// Check that FBX extensions are registered
// This is a basic test that the loader is registered
assert!(true);
}