1
1
mirror of https://github.com/walles/moar.git synced 2024-11-13 01:40:46 +03:00

Name files as we test them

This commit is contained in:
Johan Walles 2023-07-08 14:09:02 +02:00
parent fbc1dc9e49
commit 4f74d8b77b

View File

@ -171,9 +171,11 @@ func TestGetLines(t *testing.T) {
continue
}
testGetLines(t, reader)
testGetLineCount(t, reader)
testHighlightingLineCount(t, file)
t.Run(file, func(t *testing.T) {
testGetLines(t, reader)
testGetLineCount(t, reader)
testHighlightingLineCount(t, file)
})
}
}