Skip to content

Commit

Permalink
trigger todo
Browse files Browse the repository at this point in the history
  • Loading branch information
Bromeon committed Sep 22, 2024
1 parent ff3aefe commit 1750a45
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions itest/rust/src/object_tests/object_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,17 @@ fn object_engine_roundtrip() {
obj.free();
}

#[itest(focus)]
fn object_null_argument() {
let null_obj = Option::<Gd<Node>>::None;

let via = null_obj.to_godot();
let ffi = via.to_ffi();
//dbg!(ffi);

ffi.to_godot();
}

#[itest]
fn object_user_display() {
let obj = Gd::from_object(RefcPayload { value: 774 });
Expand Down

0 comments on commit 1750a45

Please sign in to comment.