()
| 523 | } |
| 524 | |
| 525 | func (s *MetadataTestSuite) TestGetJITConfigFileNotFound() { |
| 526 | _, err := s.Runner.GetJITConfigFile(s.jitInstanceCtx, "nonexistent-file") |
| 527 | |
| 528 | s.Require().NotNil(err) |
| 529 | s.Require().Contains(err.Error(), "could not find file") |
| 530 | } |
| 531 | |
| 532 | func (s *MetadataTestSuite) TestGetInstanceGithubRegistrationToken() { |
| 533 | expectedToken := "test-registration-token" |
nothing calls this directly
no test coverage detected