1
0
mirror of https://github.com/go-task/task.git synced 2025-04-27 12:32:25 +02:00

refactoring

This commit is contained in:
jaedle 2019-02-24 12:13:18 +01:00
parent 3c0cf3cd55
commit b25a9e8884

View File

@ -592,9 +592,11 @@ func TestDetails(t *testing.T) {
assert.Equal(t, buff.String(), "task: There is no detailed description for task: task-without-details\n")
buff.Reset()
assert.NoError(t, e.Run(context.Background(), taskfile.Call{Task: "other-task-with-details"}, taskfile.Call{Task: "task-with-details"}))
assert.Contains(t, buff.String(), "details of other-task-with-details")
assert.NotContains(t, buff.String(), "details of task-with-details")
const firstTask = "other-task-with-details"
const secondTask = "task-with-details"
assert.NoError(t, e.Run(context.Background(), taskfile.Call{Task: firstTask}, taskfile.Call{Task: secondTask}))
assert.Contains(t, buff.String(), "details of "+firstTask)
assert.NotContains(t, buff.String(), "details of "+secondTask)
buff.Reset()
assert.NoError(t, e.Run(context.Background(), taskfile.Call{Task: "task-with-description-containing-empty-line"}))