ftp/status_test.go
2019-01-26 09:10:51 +01:00

18 lines
339 B
Go

package ftp
import "testing"
func TestValidStatusText(t *testing.T) {
txt := StatusText(StatusInvalidCredentials)
if txt == "" {
t.Fatal("exptected status text, got empty string")
}
}
func TestInvalidStatusText(t *testing.T) {
txt := StatusText(0)
if txt != "" {
t.Fatalf("got status text %q, expected empty string", txt)
}
}