add tests

This commit is contained in:
Nikita Galaiko 2023-11-01 13:45:13 +01:00 committed by GitButler
parent ad7d0d6f62
commit 693e92119d

View File

@ -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!()
}
}
}