(retVal []byte, retErr error)
| 68 | } |
| 69 | |
| 70 | func testPreprocessor(retVal []byte, retErr error) Preprocessor { |
| 71 | return func(_ []byte) ([]byte, error) { |
| 72 | return retVal, retErr |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | type value struct { |
| 77 | Value int `yaml:"value"` |
no outgoing calls
no test coverage detected