From caf696a15d78f1cabe79217e69d8cde0fb5cb866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 27 Apr 2018 01:12:52 +0100 Subject: [PATCH] parser/gotest: Add test for skipped tests --- pkg/parser/gotest/gotest_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index 6b51a30..196fbd6 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -37,6 +37,16 @@ var tests = []struct { {Type: "output", Data: "exit status 1", Indent: 0}, {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) {