()
| 211 | } |
| 212 | |
| 213 | func (s *RepoTestSuite) TestCreateRepositoryEmptyParams() { |
| 214 | _, err := s.Runner.CreateRepository(s.Fixtures.AdminContext, params.CreateRepoParams{}) |
| 215 | |
| 216 | s.Require().Regexp("validating params: missing owner", err.Error()) |
| 217 | } |
| 218 | |
| 219 | func (s *RepoTestSuite) TestCreateRepositoryMissingCredentials() { |
| 220 | s.Fixtures.CreateRepoParams.CredentialsName = notExistingCredentialsName |
nothing calls this directly
no test coverage detected