Skip to content

Commit

Permalink
Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Nov 26, 2024
1 parent cfa2103 commit 63623bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/typing/columns/columns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ import (
"github.com/stretchr/testify/assert"
)

func TestColumn_IsValid(t *testing.T) {
assert.False(t, NewColumn("foo", typing.Invalid).IsValid())
assert.True(t, NewColumn("foo", typing.String).IsValid())
}

func TestEscapeName(t *testing.T) {
type _testCase struct {
name string
Expand Down

0 comments on commit 63623bc

Please sign in to comment.