()
| 793 | |
| 794 | #[test] |
| 795 | fn test_stash_builder_chain() { |
| 796 | let cmd = Stash::new() |
| 797 | .with_message("test") |
| 798 | .with_include_untracked(true) |
| 799 | .with_keep(true); |
| 800 | |
| 801 | assert_eq!(cmd.message, Some("test".to_string())); |
| 802 | assert!(cmd.include_untracked); |
| 803 | assert!(cmd.keep); |
| 804 | } |
| 805 | |
| 806 | // StashEntry Tests |
| 807 |
nothing calls this directly
no test coverage detected