mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
14 lines
302 B
Go
14 lines
302 B
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
package parser_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/featurebasedb/featurebase/v3/sql3/parser"
|
|
)
|
|
|
|
func TestPos_String(t *testing.T) {
|
|
if got, want := (parser.Pos{}).String(), `-`; got != want {
|
|
t.Fatalf("String()=%q, want %q", got, want)
|
|
}
|
|
}
|