Beego/logs/smtp_test.go

20 lines
623 B
Go
Raw Normal View History

2014-04-12 05:18:18 +00:00
// Beego (http://beego.me/)
// @description beego is an open-source, high-performance web framework for the Go programming language.
// @link http://github.com/astaxie/beego for the canonical source repository
// @license http://github.com/astaxie/beego/blob/master/LICENSE
// @authors astaxie
2013-08-27 15:48:58 +00:00
package logs
import (
"testing"
2013-08-28 07:55:34 +00:00
"time"
2013-08-27 15:48:58 +00:00
)
func TestSmtp(t *testing.T) {
log := NewLogger(10000)
log.SetLogger("smtp", `{"username":"beegotest@gmail.com","password":"xxxxxxxx","host":"smtp.gmail.com:587","sendTos":["xiemengjun@gmail.com"]}`)
2013-08-27 15:48:58 +00:00
log.Critical("sendmail critical")
2013-08-28 07:55:34 +00:00
time.Sleep(time.Second * 30)
2013-08-27 15:48:58 +00:00
}