20 lines
406 B
Go
20 lines
406 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSummaryLineMarksFailuresInRed(t *testing.T) {
|
|
fs := NewRealFileSystem()
|
|
|
|
fs.RecordLinkAttempt(opSymlink, "/tmp/source", "/tmp/target", fmt.Errorf("boom"), false)
|
|
|
|
lines := fs.SummaryLines()
|
|
assert.Equal(t, 1, len(lines))
|
|
assert.Contains(t, lines[0], BRed+"FAIL"+Reset)
|
|
assert.Contains(t, lines[0], "boom")
|
|
}
|