mirror of
https://github.com/astaxie/beego.git
synced 2024-11-01 03:40:55 +00:00
udpated timezone in templatefunc_test. changed error message to be more descriptive when tests fail
This commit is contained in:
parent
03080b3ef2
commit
61008fe75c
@ -36,25 +36,27 @@ func TestHtml2str(t *testing.T) {
|
|||||||
func TestDateFormat(t *testing.T) {
|
func TestDateFormat(t *testing.T) {
|
||||||
ts := "Mon, 01 Jul 2013 13:27:42 CST"
|
ts := "Mon, 01 Jul 2013 13:27:42 CST"
|
||||||
tt, _ := time.Parse(time.RFC1123, ts)
|
tt, _ := time.Parse(time.RFC1123, ts)
|
||||||
if DateFormat(tt, "2006-01-02 15:04:05") != "2013-07-01 13:27:42" {
|
|
||||||
t.Error("should be equal")
|
if ss := DateFormat(tt, "2006-01-02 15:04:05"); ss != "2013-07-01 14:27:42" {
|
||||||
|
t.Errorf("2013-07-01 14:27:42 does not equal %v", ss)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDate(t *testing.T) {
|
func TestDate(t *testing.T) {
|
||||||
ts := "Mon, 01 Jul 2013 13:27:42 CST"
|
ts := "Mon, 01 Jul 2013 13:27:42 CST"
|
||||||
tt, _ := time.Parse(time.RFC1123, ts)
|
tt, _ := time.Parse(time.RFC1123, ts)
|
||||||
if Date(tt, "Y-m-d H:i:s") != "2013-07-01 13:27:42" {
|
|
||||||
t.Error("should be equal")
|
if ss := Date(tt, "Y-m-d H:i:s"); ss != "2013-07-01 14:27:42" {
|
||||||
|
t.Errorf("2013-07-01 14:27:42 does not equal %v", ss)
|
||||||
}
|
}
|
||||||
if Date(tt, "y-n-j h:i:s A") != "13-7-1 01:27:42 PM" {
|
if ss := Date(tt, "y-n-j h:i:s A"); ss != "13-7-1 02:27:42 PM" {
|
||||||
t.Error("should be equal")
|
t.Errorf("13-7-1 02:27:42 PM does not equal %v", ss)
|
||||||
}
|
}
|
||||||
if Date(tt, "D, d M Y g:i:s a") != "Mon, 01 Jul 2013 1:27:42 pm" {
|
if ss := Date(tt, "D, d M Y g:i:s a"); ss != "Mon, 01 Jul 2013 2:27:42 pm" {
|
||||||
t.Error("should be equal")
|
t.Errorf("Mon, 01 Jul 2013 2:27:42 pm does not equal %v", ss)
|
||||||
}
|
}
|
||||||
if Date(tt, "l, d F Y G:i:s") != "Monday, 01 July 2013 13:27:42" {
|
if ss := Date(tt, "l, d F Y G:i:s"); ss != "Monday, 01 July 2013 14:27:42" {
|
||||||
t.Error("should be equal")
|
t.Errorf("Monday, 01 July 2013 14:27:42 does not equal %v", ss)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user