parser/gotest: Add test for skipped tests

This commit is contained in:
Joël Stemmer 2018-04-27 01:12:52 +01:00
parent 0512acf25e
commit caf696a15d

View File

@ -37,6 +37,16 @@ var tests = []struct {
{Type: "output", Data: "exit status 1", Indent: 0}, {Type: "output", Data: "exit status 1", Indent: 0},
{Type: "summary", Result: "FAIL", Name: "package/name", Duration: 151 * time.Millisecond}, {Type: "summary", Result: "FAIL", Name: "package/name", Duration: 151 * time.Millisecond},
}}, }},
{"03-skip.txt",
[]Event{
{Type: "run_test", Id: 1, Name: "TestOne"},
{Type: "end_test", Id: 1, Name: "TestOne", Result: "SKIP", Duration: 20 * time.Millisecond},
{Type: "output", Data: "file_test.go:11: Skip message", Indent: 1},
{Type: "run_test", Id: 2, Name: "TestTwo"},
{Type: "end_test", Id: 2, Name: "TestTwo", Result: "PASS", Duration: 130 * time.Millisecond},
{Type: "status", Result: "PASS"},
{Type: "summary", Result: "ok", Name: "package/name", Duration: 150 * time.Millisecond},
}},
} }
func TestParse(t *testing.T) { func TestParse(t *testing.T) {