mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
18 lines
572 B
Go
18 lines
572 B
Go
package mlrval
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestString(t *testing.T) {
|
|
assert.Equal(t, "234", FromInferredType("234").String())
|
|
assert.Equal(t, "234", FromDeferredType("234").String())
|
|
assert.Equal(t, "234.5", FromInferredType("234.5").String())
|
|
assert.Equal(t, "234.5", FromDeferredType("234.5").String())
|
|
assert.Equal(t, "abc", FromInferredType("abc").String())
|
|
assert.Equal(t, "abc", FromDeferredType("abc").String())
|
|
assert.Equal(t, "", FromInferredType("").String())
|
|
assert.Equal(t, "", FromDeferredType("").String())
|
|
}
|