diff --git a/packages/tauri/tests/virtual_branches/mod.rs b/packages/tauri/tests/virtual_branches/mod.rs index 25e2f3edf..183797a12 100644 --- a/packages/tauri/tests/virtual_branches/mod.rs +++ b/packages/tauri/tests/virtual_branches/mod.rs @@ -1773,3 +1773,36 @@ mod cherry_pick { } } } + +mod amend { + use super::*; + + mod to_same_branch { + use super::*; + + #[tokio::test] + async fn non_locked_hunk() { + todo!() + } + + #[tokio::test] + async fn locked_hunk() { + todo!() + } + } + + mod to_another_branch { + use super::*; + + #[tokio::test] + async fn non_locked_hunk() { + todo!() + } + + #[tokio::test] + async fn locked_hunk() { + todo!() + } + } + +}