blob: 09340910baba5e320a81131ff3f72bcd24920a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package main
import (
"net/http"
"testing"
"time"
)
func TestXYZ(t *testing.T) {
println("Last-Modified", time.Unix(int64(1373273596), 0).UTC().Format(http.TimeFormat))
}
|