mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 12:40:15 -05:00
go-junit-report_test should fail if no files found
Today, if the testdata directory isn't present, this test trivially passes. This makes it fail when no files are found.
This commit is contained in:
parent
d6bf22343d
commit
39473dc54e
@ -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