mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
Merge pull request #142 from greg-dennis/patch-1
go-junit-report_test should fail if no files found
This commit is contained in:
commit
35c4d8a827
@ -33,6 +33,9 @@ func TestRun(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatalf("error finding files in testdata: %v", err)
|
||||
}
|
||||
if len(files) == 0 {
|
||||
t.Fatalf("no files found in %s", testDataDir)
|
||||
}
|
||||
|
||||
for _, file := range files {
|
||||
if !matchRegex.MatchString(file) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user