1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-07-12 22:41:07 +02:00

add all the plugins

This commit is contained in:
Asim Aslam
2020-12-26 15:32:45 +00:00
parent df2dab0169
commit 7fc0b7ef72
522 changed files with 94987 additions and 200 deletions

View File

@ -0,0 +1,29 @@
package animate
import (
"testing"
)
func TestAnimate(t *testing.T) {
// TODO: fix test
return
testData := []struct {
text string
}{
{"funny cat"},
}
command := Animate()
for _, d := range testData {
rsp, err := command.Exec("animate", d.text)
if err != nil {
t.Fatal(err)
}
if rsp == nil {
t.Fatal("expected result, got nil")
}
}
}