(
f: &Fixtures,
repo_ids: &Vec<RepoId>,
actor: &Arc<Viewer>,
user_id: &str,
)
| 112 | use super::*; |
| 113 | |
| 114 | fn ensure( |
| 115 | f: &Fixtures, |
| 116 | repo_ids: &Vec<RepoId>, |
| 117 | actor: &Arc<Viewer>, |
| 118 | user_id: &str, |
| 119 | ) -> Result<git::EnsurePersonalRepoResult> { |
| 120 | git::EnsurePersonalRepo { |
| 121 | actor: Arc::clone(actor), |
| 122 | user_id: user_id.to_owned(), |
| 123 | personal_repo_ids: repo_ids.to_owned(), |
| 124 | } |
| 125 | .call(f.mutation()) |
| 126 | } |
| 127 | |
| 128 | #[test] |
| 129 | fn root_topic_created() { |
no test coverage detected