(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestGetScheduleAtToAroundCodemod(t *testing.T) { |
| 13 | codemod := getScheduleAtToAroundCodemod() |
| 14 | |
| 15 | assert.Equal(t, "schedule-at-to-around-migration", codemod.ID) |
| 16 | assert.Equal(t, "Migrate schedule 'at' syntax to 'around' syntax", codemod.Name) |
| 17 | assert.NotEmpty(t, codemod.Description) |
| 18 | assert.Equal(t, "0.5.0", codemod.IntroducedIn) |
| 19 | require.NotNil(t, codemod.Apply) |
| 20 | } |
| 21 | |
| 22 | func TestScheduleCodemod_DailyAt(t *testing.T) { |
| 23 | codemod := getScheduleAtToAroundCodemod() |
nothing calls this directly
no test coverage detected