(&self, git_chain: &GitChain, show_prs: bool)
| 180 | } |
| 181 | |
| 182 | pub fn display_status(&self, git_chain: &GitChain, show_prs: bool) -> Result<(), Error> { |
| 183 | let chain = Chain::get_chain(git_chain, &self.chain_name)?; |
| 184 | |
| 185 | let current_branch = git_chain.get_current_branch_name()?; |
| 186 | |
| 187 | chain.display_list(git_chain, ¤t_branch, show_prs)?; |
| 188 | |
| 189 | Ok(()) |
| 190 | } |
| 191 | |
| 192 | pub fn change_root_branch( |
| 193 | &self, |
no test coverage detected