Beispiel #1
0
    def test_next_year_start(self):
        w = Workflow('test', 2)
        date = datetime.date(2001, 10, 14)

        next = w._next_year_start(date)
        self.assertEqual(datetime.date(2002, 1, 1), next)
Beispiel #2
0
    def test_next_year_start(self):
        w = Workflow('test', 2)
        date = datetime.date(2001, 10, 14)

        next = w._next_year_start(date)
        self.assertEqual(datetime.date(2002, 1, 1), next)