Files
notify/tools_test.go
2025-11-29 14:45:32 +03:00

21 lines
385 B
Go

package notify_test
import (
"log"
"testing"
"git.gm6.ru/icewind/notify"
)
func TestCreateTable(t *testing.T) {
rows := [][]string{
{"Название", "Цена", "Кол-во", "Рост"},
{"Яблоки", "120", "5", "3.5"},
{"Бананы", "-90", "30", "12 000"},
{"Киви", "+200", "1", "-1.2"},
}
msg := notify.BuildTelegramTable(rows)
log.Println(msg)
}