ref: e39a258ec409f7072e82342bb50e8ac2ed15a994
dir: /parser/frontmatter_test.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) } } }