()
| 516 | } |
| 517 | |
| 518 | func (s *MetadataTestSuite) TestGetJITConfigFileUnauthorized() { |
| 519 | _, err := s.Runner.GetJITConfigFile(s.unauthorizedCtx, ".runner") |
| 520 | |
| 521 | s.Require().NotNil(err) |
| 522 | s.Require().Contains(err.Error(), "instance not configured for JIT") |
| 523 | } |
| 524 | |
| 525 | func (s *MetadataTestSuite) TestGetJITConfigFileNotFound() { |
| 526 | _, err := s.Runner.GetJITConfigFile(s.jitInstanceCtx, "nonexistent-file") |
nothing calls this directly
no test coverage detected