1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
package en_test
import (
"testing"
"time"
"github.com/olebedev/when"
"github.com/olebedev/when/rules"
"github.com/olebedev/when/rules/en"
)
func TestExactMonthDate(t *testing.T) {
w := when.New(nil)
w.Add(en.ExactMonthDate(rules.Override))
fixtok := []Fixture{
{"third of march", 0, "third of march", 1368 * time.Hour},
{"march third", 0, "march third", 1368 * time.Hour},
{"march 3rd", 0, "march 3rd", 1368 * time.Hour},
{"3rd march", 0, "3rd march", 1368 * time.Hour},
{"march 3", 0, "march 3", 1368 * time.Hour},
{"1 september", 0, "1 september", 5736 * time.Hour},
{"1 sept", 0, "1 sept", 5736 * time.Hour},
{"1 sept.", 0, "1 sept.", 5736 * time.Hour},
{"1st of september", 0, "1st of september", 5736 * time.Hour},
{"sept. 1st", 0, "sept. 1st", 5736 * time.Hour},
{"march 7th", 0, "march 7th", 1464 * time.Hour},
{"october 21st", 0, "october 21st", 6936 * time.Hour},
{"twentieth of december", 0, "twentieth of december", 8376 * time.Hour},
{"march 10th", 0, "march 10th", 1536 * time.Hour},
{"jan. 4", 0, "jan. 4", -48 * time.Hour},
{"february", 0, "february", 744 * time.Hour},
{"october", 0, "october", 6576 * time.Hour},
{"jul.", 0, "jul.", 4368 * time.Hour},
{"june", 0, "june", 3648 * time.Hour},
}
ApplyFixtures(t, "en.ExactMonthDate", w, fixtok)
}
|