You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
203 B
16 lines
203 B
3 years ago
|
package testutil
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// Date return date for testing.
|
||
|
func Date() time.Time {
|
||
|
// Using VK birthday as test date.
|
||
|
return time.Date(2006, 10, 10,
|
||
|
13, 42, 15,
|
||
|
34123,
|
||
|
time.UTC,
|
||
|
)
|
||
|
}
|