+14
-5
@@ -8,7 +8,7 @@ import (
|
||||
func testFlow(t *testing.T, input string, expectedFlow []token) {
|
||||
tokens := lexToml([]byte(input))
|
||||
if !reflect.DeepEqual(tokens, expectedFlow) {
|
||||
t.Fatal("Different flows. Expected\n", expectedFlow, "\nGot:\n", tokens)
|
||||
t.Fatalf("Different flows.\nExpected:\n%v\nGot:\n%v", expectedFlow, tokens)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,11 +22,20 @@ func TestValidKeyGroup(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestNestedQuotedUnicodeKeyGroup(t *testing.T) {
|
||||
testFlow(t, `[ j . "ʞ" . l ]`, []token{
|
||||
testFlow(t, `[ j . "ʞ" . l . 'ɯ' ]`, []token{
|
||||
{Position{1, 1}, tokenLeftBracket, "["},
|
||||
{Position{1, 2}, tokenKeyGroup, ` j . "ʞ" . l `},
|
||||
{Position{1, 15}, tokenRightBracket, "]"},
|
||||
{Position{1, 16}, tokenEOF, ""},
|
||||
{Position{1, 2}, tokenKeyGroup, ` j . "ʞ" . l . 'ɯ' `},
|
||||
{Position{1, 21}, tokenRightBracket, "]"},
|
||||
{Position{1, 22}, tokenEOF, ""},
|
||||
})
|
||||
}
|
||||
|
||||
func TestNestedQuotedUnicodeKeyAssign(t *testing.T) {
|
||||
testFlow(t, ` j . "ʞ" . l . 'ɯ' = 3`, []token{
|
||||
{Position{1, 2}, tokenKey, `j . "ʞ" . l . 'ɯ'`},
|
||||
{Position{1, 20}, tokenEqual, "="},
|
||||
{Position{1, 22}, tokenInteger, "3"},
|
||||
{Position{1, 23}, tokenEOF, ""},
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user