mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -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 {
|
if err != nil {
|
||||||
t.Fatalf("error finding files in testdata: %v", err)
|
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 {
|
for _, file := range files {
|
||||||
if !matchRegex.MatchString(file) {
|
if !matchRegex.MatchString(file) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user