Explorar el Código

dg nil check on TestGateway

Bruce Marriner hace 8 años
padre
commit
280ad2cdc3
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      restapi_test.go

+ 3 - 0
restapi_test.go

@@ -137,6 +137,9 @@ func TestLogout(t *testing.T) {
 
 func TestGateway(t *testing.T) {
 
+	if dg == nil {
+		t.Skip("Skipping, dg not set.")
+	}
 	_, err := dg.Gateway()
 	if err != nil {
 		t.Errorf("Gateway() returned error: %+v", err)