mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
Many minor fixes to make test logs more consistent and correct a mispelling. Standardize on "[%i] got X but expected Y" for log messages. Using a consistent layout makes it easier to read the test results. This was mostly changing "Got" to "got". Swapped the order of values on several calls to bring them in line with the convention. A few log messages had a sequence number added to identify the exact scenario that failed. Otherwise, there would be no way to ascertain which failed When there are many scenarios. Correct spelling of "expected." Fixes #1028 Merged be2097e1ad789eca5d893805a059d94defbe5c48 [close #1040]
26 lines
401 B
Go
26 lines
401 B
Go
package parser
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestFormatToLeadRune(t *testing.T) {
|
|
for i, this := range []struct {
|
|
kind string
|
|
expect rune
|
|
}{
|
|
{"yaml", '-'},
|
|
{"yml", '-'},
|
|
{"toml", '+'},
|
|
{"json", '{'},
|
|
{"js", '{'},
|
|
{"unknown", '+'},
|
|
} {
|
|
result := FormatToLeadRune(this.kind)
|
|
|
|
if result != this.expect {
|
|
t.Errorf("[%d] got %q but expected %q", i, result, this.expect)
|
|
}
|
|
}
|
|
}
|