mirror of https://github.com/jackc/pgx.git
23 lines
439 B
Go
23 lines
439 B
Go
package pgtype_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
"github.com/jackc/pgx/v5/pgtype/testutil"
|
|
)
|
|
|
|
func TestLsegTranscode(t *testing.T) {
|
|
testutil.TestSuccessfulTranscode(t, "lseg", []interface{}{
|
|
&pgtype.Lseg{
|
|
P: [2]pgtype.Vec2{{3.14, 1.678}, {7.1, 5.2345678901}},
|
|
Valid: true,
|
|
},
|
|
&pgtype.Lseg{
|
|
P: [2]pgtype.Vec2{{7.1, 1.678}, {-13.14, -5.234}},
|
|
Valid: true,
|
|
},
|
|
&pgtype.Lseg{},
|
|
})
|
|
}
|