first commit

This commit is contained in:
2020-10-25 10:00:59 +03:00
commit 0bd6f67397
80 changed files with 4741 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package formatter_test
import (
"context"
"testing"
"gitoa.ru/go-4devs/console/output/formatter"
)
func TestNone(t *testing.T) {
ctx := context.Background()
none := formatter.None()
cases := map[string]string{
"<info>message info</info>": "message info",
"<error>message error</error>": "message error",
"<comment><scheme></comment>": "<scheme>",
"<body>body</body>": "<body>body</body>",
}
for msg, ex := range cases {
got := none.Format(ctx, msg)
if ex != got {
t.Errorf("expect:%#v, got:%#v", ex, got)
}
}
}