()
| 112 | |
| 113 | #[test] |
| 114 | fn test_get_github_project_name_ssh() { |
| 115 | let name = get_github_project_name("git@github.com:my_org/my_project.git"); |
| 116 | assert!(name.is_some()); |
| 117 | assert_eq!("my_org/my_project", name.unwrap()); |
| 118 | } |
| 119 | |
| 120 | #[test] |
| 121 | fn test_get_github_project_name_ssh_no_git() { |
nothing calls this directly
no test coverage detected