featurebase/sql2/token_test.go
2022-09-06 09:39:22 -07:00

15 lines
331 B
Go

// Copyright 2022 Molecula Corp. (DBA FeatureBase).
// SPDX-License-Identifier: Apache-2.0
package sql2_test
import (
"testing"
sql "github.com/featurebasedb/featurebase/v3/sql2"
)
func TestPos_String(t *testing.T) {
if got, want := (sql.Pos{}).String(), `-`; got != want {
t.Fatalf("String()=%q, want %q", got, want)
}
}