Quellcode durchsuchen

Add bool case to ToStringE

tags/v1.0.0
Cyrill Schumacher Steve Francia vor 8 Jahren
Ursprung
Commit
ee7b3e0353
2 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
  1. +2
    -0
      cast_test.go
  2. +2
    -0
      caste.go

+ 2
- 0
cast_test.go Datei anzeigen

@@ -40,6 +40,8 @@ func TestToString(t *testing.T) {
assert.Equal(t, ToString(template.URL("http://somehost.foo")), "http://somehost.foo")
assert.Equal(t, ToString(foo), "one more time")
assert.Equal(t, ToString(nil), "")
assert.Equal(t, ToString(true), "true")
assert.Equal(t, ToString(false), "false")
}

type foo struct {


+ 2
- 0
caste.go Datei anzeigen

@@ -194,6 +194,8 @@ func ToStringE(i interface{}) (string, error) {
switch s := i.(type) {
case string:
return s, nil
case bool:
return strconv.FormatBool(s), nil
case float64:
return strconv.FormatFloat(i.(float64), 'f', -1, 64), nil
case int:


Laden…
Abbrechen
Speichern