()
| 424 | } |
| 425 | |
| 426 | func (s *OrgTestSuite) TestCreateOrgPoolErrUnauthorized() { |
| 427 | _, err := s.Runner.CreateOrgPool(context.Background(), "dummy-org-id", s.Fixtures.CreatePoolParams) |
| 428 | |
| 429 | s.Require().Equal(runnerErrors.ErrUnauthorized, err) |
| 430 | } |
| 431 | |
| 432 | func (s *OrgTestSuite) TestCreateOrgPoolFetchPoolParamsFailed() { |
| 433 | s.Fixtures.CreatePoolParams.ProviderName = notExistingProviderName |
nothing calls this directly
no test coverage detected