mirror of
https://github.com/araddon/dateparse.git
synced 2025-01-19 19:26:09 +08:00
My addition last
This commit is contained in:
parent
544b5426f4
commit
c5a1edc710
@ -20,7 +20,6 @@ type dateTest struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var testInputs = []dateTest{
|
var testInputs = []dateTest{
|
||||||
{in: "Wed, 8 Feb 2023 19:00:46 +1100 (AEDT)", out: "2023-02-08 19:00:46 +1100 AEDT"},
|
|
||||||
{in: "oct 7, 1970", out: "1970-10-07 00:00:00 +0000 UTC"},
|
{in: "oct 7, 1970", out: "1970-10-07 00:00:00 +0000 UTC"},
|
||||||
{in: "oct 7, '70", out: "1970-10-07 00:00:00 +0000 UTC"},
|
{in: "oct 7, '70", out: "1970-10-07 00:00:00 +0000 UTC"},
|
||||||
{in: "Oct 7, '70", out: "1970-10-07 00:00:00 +0000 UTC"},
|
{in: "Oct 7, '70", out: "1970-10-07 00:00:00 +0000 UTC"},
|
||||||
@ -417,6 +416,8 @@ var testInputs = []dateTest{
|
|||||||
{in: "1384216367111", out: "2013-11-12 00:32:47.111 +0000 UTC"},
|
{in: "1384216367111", out: "2013-11-12 00:32:47.111 +0000 UTC"},
|
||||||
{in: "1384216367111222", out: "2013-11-12 00:32:47.111222 +0000 UTC"},
|
{in: "1384216367111222", out: "2013-11-12 00:32:47.111222 +0000 UTC"},
|
||||||
{in: "1384216367111222333", out: "2013-11-12 00:32:47.111222333 +0000 UTC"},
|
{in: "1384216367111222333", out: "2013-11-12 00:32:47.111222333 +0000 UTC"},
|
||||||
|
|
||||||
|
{in: "Wed, 8 Feb 2023 19:00:46 +1100 (AEDT)", out: "2023-02-08 08:00:46 +0000 UTC"},
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParse(t *testing.T) {
|
func TestParse(t *testing.T) {
|
||||||
|
Loading…
Reference in New Issue
Block a user