(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestJob_FullName(t *testing.T) { |
| 45 | job := newTestJob() |
| 46 | |
| 47 | assert.Equal(t, job.FullName(), fmt.Sprintf("%s_%s", modName, jobName)) |
| 48 | } |
| 49 | |
| 50 | func TestJob_ModuleName(t *testing.T) { |
| 51 | job := newTestJob() |
nothing calls this directly
no test coverage detected
searching dependent graphs…