mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 11:24:02 +03:00
Test unmarshal nil for type bytes
This commit is contained in:
@@ -17,6 +17,12 @@ type TypeBytesTestSuite struct {
|
|||||||
suite.Suite
|
suite.Suite
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (suite *TypeBytesTestSuite) TestUnmarshalNil() {
|
||||||
|
typ := &config.TypeBytes{}
|
||||||
|
suite.NoError(typ.UnmarshalText(nil))
|
||||||
|
suite.Empty(typ.String())
|
||||||
|
}
|
||||||
|
|
||||||
func (suite *TypeBytesTestSuite) TestUnmarshalFail() {
|
func (suite *TypeBytesTestSuite) TestUnmarshalFail() {
|
||||||
testData := []string{
|
testData := []string{
|
||||||
"1m",
|
"1m",
|
||||||
|
|||||||
Reference in New Issue
Block a user