(uid uint)
| 62 | } |
| 63 | |
| 64 | func (s *PluginSuite) getDanglingConf(uid uint) *model.PluginConf { |
| 65 | conf, err := s.db.GetPluginConfByUserAndPath(uid, "github.com/gotify/server/v2/plugin/example/removed") |
| 66 | assert.NoError(s.T(), err) |
| 67 | return conf |
| 68 | } |
| 69 | |
| 70 | func (s *PluginSuite) resetRecorder() { |
| 71 | s.recorder = httptest.NewRecorder() |
no test coverage detected