Esempio n. 1
0
    def test_gotcha_import(self):
        # standard `replace` caveat, make sure you
        # patch all revelent places where date
        # has been imported:

        @replace('datetime.date', test_date())
        def test_something():
            from datetime import date
            compare(date.today(), d(2001, 1, 1))
            compare(sample1.str_today_1(), '2001-01-02')

        with ShouldRaise(AssertionError) as s:
            test_something()
        # This convoluted check is because we can't stub
        # out the date, since we're testing stubbing out
        # the date ;-)
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        # check we can parse the date
        dt1 = strptime(dt1, '%Y-%m-%d')
        # check the dt2 bit was as it should be
        compare(dt2, '2001-01-02')

        # What you need to do is replace the imported type:
        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_1(), '2001-01-01')

        test_something()
Esempio n. 2
0
    def test_gotcha_import_and_obtain(self):
        # Another gotcha is where people have locally obtained
        # a class attributes, where the normal patching doesn't
        # work:

        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        with ShouldRaise(AssertionError) as s:
            test_something()
        # This convoluted check is because we can't stub
        # out the date, since we're testing stubbing out
        # the date ;-)
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        # check we can parse the date
        dt1 = strptime(dt1, '%Y-%m-%d')
        # check the dt2 bit was as it should be
        compare(dt2, '2001-01-01')

        # What you need to do is replace the imported name:
        @replace('testfixtures.tests.sample1.today', test_date().today)
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        test_something()
Esempio n. 3
0
    def test_get_dnt_age(self):
        with Replace('user.models.date', test_date(2016, 1, 1, delta=0)):
            self.assertEqual(self.user_with_birth_date.get_dnt_age(), 36)

        with Replace('user.models.date', test_date(2016, 6, 6, delta=0)):
            self.assertEqual(self.user_with_birth_date.get_dnt_age(), 36)

        with Replace('user.models.date', test_date(2016, 6, 7, delta=0)):
            self.assertEqual(self.user_with_birth_date.get_dnt_age(), 36)

        with Replace('user.models.date', test_date(2016, 12, 31, delta=0)):
            self.assertEqual(self.user_with_birth_date.get_dnt_age(), 36)
Esempio n. 4
0
def test_demonstrate_today(fake_out):
    with Replace('testfixtures.tests.sample1.date', test_date(1978, 6, 13)):
        global date
        date = Mock()
        date.today = str_today_1
        demonstrate_today()
        assert fake_out.getvalue() == "1978-06-13\n"
Esempio n. 5
0
    def test_gotcha_import_and_obtain(self):
        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        with ShouldRaise(AssertionError) as s:
            test_something()
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        dt1 = strptime(dt1, '%Y-%m-%d')
        compare(dt2, '2001-01-01')

        @replace('testfixtures.tests.sample1.today', test_date().today)
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        test_something()
Esempio n. 6
0
    def test_gotcha_import(self):
        @replace('datetime.date', test_date())
        def test_something():
            from datetime import date
            compare(date.today(), d(2001, 1, 1))
            compare(sample1.str_today_1(), '2001-01-02')

        with ShouldRaise(AssertionError) as s:
            test_something()
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        dt1 = strptime(dt1, '%Y-%m-%d')
        compare(dt2, '2001-01-02')

        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_1(), '2001-01-01')

        test_something()
 def test_create_date_naive(self):
     with self.settings(USE_TZ=False):
         with Replace('webwhois.utils.public_response.date',
                      test_date(2017, 5, 25)):
             public_response = PublicResponse(sentinel.object_type,
                                              sentinel.public_request_id,
                                              sentinel.request_type,
                                              sentinel.handle,
                                              sentinel.confirmation_method)
     self.assertEqual(public_response.create_date, date(2017, 5, 25))
Esempio n. 8
0
 def test_date_return_type_picky(self):
     date_type = test_date(strict=True)
     with Replacer() as r:
         r.replace('datetime.datetime',
                   test_datetime(date_type=date_type, strict=True))
         from datetime import datetime
         dt = datetime(2010, 8, 26, 14, 33, 13)
         d = dt.date()
         compare(d, date_type(2010, 8, 26))
         self.failUnless(d.__class__ is date_type)
    def test_delta(self):
        with OutputCapture() as output:

            date = test_date(delta=2, delta_type='days')
            print(date.today())
            print(date.today())

        output.compare('''
2001-01-01
2001-01-03
''')
    def test_delta(self):
        with OutputCapture() as output:

            date = test_date(delta=2, delta_type='days')
            print(date.today())
            print(date.today())

        output.compare('''
2001-01-01
2001-01-03
''')
Esempio n. 11
0
 def test_date_return_type_picky(self):
     # type checking is a bitch :-/
     date_type = test_date(strict=True)
     with Replacer() as r:
         r.replace('datetime.datetime', test_datetime(date_type=date_type,
                                                      strict=True,
                                                      ))
         from datetime import datetime
         dt = datetime(2010, 8, 26, 14, 33, 13)
         d = dt.date()
         compare(d, date_type(2010, 8, 26))
         self.failUnless(d.__class__ is date_type)
Esempio n. 12
0
 def test_import_and_obtain_with_lists(self):
     t = test_date(None)
     t.add(2002, 1, 1)
     t.add(2002, 1, 2)
     from testfixtures import Replacer
     r = Replacer()
     r.replace('testfixtures.tests.sample1.today', t.today)
     try:
         compare(sample1.str_today_2(), '2002-01-01')
         compare(sample1.str_today_2(), '2002-01-02')
     finally:
         r.restore()
    def test_simple(self):
        with OutputCapture() as output:

            date = test_date(2013, 3, 23)
            print(date.today())
            print(date.today())
            print(date.today())

        output.compare('''
2013-03-23
2013-03-24
2013-03-26
''')
    def test_specific(self):
        with OutputCapture() as output:

            date = test_date(None)
            date.add(1978, 6, 13)
            date.add(2013, 3, 23)
            print(date.today())
            print(date.today())

        output.compare('''
1978-06-13
2013-03-23
''')
    def test_simple(self):
        with OutputCapture() as output:

            date = test_date(2013, 3, 23)
            print(date.today())
            print(date.today())
            print(date.today())

        output.compare('''
2013-03-23
2013-03-24
2013-03-26
''')
    def test_specific(self):
        with OutputCapture() as output:

            date = test_date(None)
            date.add(1978, 6, 13)
            date.add(2013, 3, 23)
            print(date.today())
            print(date.today())

        output.compare('''
1978-06-13
2013-03-23
''')
Esempio n. 17
0
    def test_import_and_obtain_with_lists(self):

        t = test_date(None)
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)

        from testfixtures import Replacer
        r = Replacer()
        r.replace('testfixtures.tests.sample1.today', t.today)
        try:
            compare(sample1.str_today_2(), '2002-01-01')
            compare(sample1.str_today_2(), '2002-01-02')
        finally:
            r.restore()
Esempio n. 18
0
 def test_tick_with_timedelta_instance(self):
     date = test_date(delta=0)
     compare(date.today(), expected=d(2001, 1, 1))
     date.tick(timedelta(days=1))
     compare(date.today(), expected=d(2001, 1, 2))
Esempio n. 19
0
 def test_membership_paid_after_arskrav(self):
     with Replace('focus.abstractions.member.date', test_date(date.today().year, 12, 1)):
         self.balance.delete()
         self.assertTrue(self.user.payment.status['this_year'])
         self.assertFalse(self.user.payment.status['next_year'])
Esempio n. 20
0
class TestDate(TestCase):

    # NB: Only the today method is currently stubbed out,
    #     if you need other methods, tests and patches
    #     greatfully received!

    @replace('datetime.date', test_date())
    def test_today(self):
        from datetime import date
        compare(date.today(), d(2001, 1, 1))
        compare(date.today(), d(2001, 1, 2))
        compare(date.today(), d(2001, 1, 4))

    @replace('datetime.date', test_date(2001, 2, 3))
    def test_today_supplied(self):
        from datetime import date
        compare(date.today(), d(2001, 2, 3))

    @replace('datetime.date', test_date(year=2001, month=2, day=3))
    def test_today_all_kw(self):
        from datetime import date
        compare(date.today(), d(2001, 2, 3))

    @replace('datetime.date', test_date(None))
    def test_today_sequence(self, t):
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)
        t.add(2002, 1, 3)
        from datetime import date
        compare(date.today(), d(2002, 1, 1))
        compare(date.today(), d(2002, 1, 2))
        compare(date.today(), d(2002, 1, 3))

    @replace('datetime.date', test_date(None))
    def test_today_requested_longer_than_supplied(self, t):
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)
        from datetime import date
        compare(date.today(), d(2002, 1, 1))
        compare(date.today(), d(2002, 1, 2))
        compare(date.today(), d(2002, 1, 3))
        compare(date.today(), d(2002, 1, 5))

    @replace('datetime.date', test_date(None))
    def test_add_date_supplied(self):
        from datetime import date
        date.add(d(2001, 1, 2))
        date.add(date(2001, 1, 3))
        compare(date.today(), d(2001, 1, 2))
        compare(date.today(), d(2001, 1, 3))

    @replace('datetime.date', test_date(strict=True))
    def test_call(self, t):
        compare(t(2002, 1, 2), d(2002, 1, 2))
        from datetime import date
        dt = date(2003, 2, 1)
        self.failIf(dt.__class__ is d)
        compare(dt, d(2003, 2, 1))

    def test_gotcha_import(self):
        # standard `replace` caveat, make sure you
        # patch all revelent places where date
        # has been imported:

        @replace('datetime.date', test_date())
        def test_something():
            from datetime import date
            compare(date.today(), d(2001, 1, 1))
            compare(sample1.str_today_1(), '2001-01-02')

        with ShouldRaise(AssertionError) as s:
            test_something()
        # This convoluted check is because we can't stub
        # out the date, since we're testing stubbing out
        # the date ;-)
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        # check we can parse the date
        dt1 = strptime(dt1, '%Y-%m-%d')
        # check the dt2 bit was as it should be
        compare(dt2, '2001-01-02')

        # What you need to do is replace the imported type:
        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_1(), '2001-01-01')

        test_something()

    def test_gotcha_import_and_obtain(self):
        # Another gotcha is where people have locally obtained
        # a class attributes, where the normal patching doesn't
        # work:

        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        with ShouldRaise(AssertionError) as s:
            test_something()
        # This convoluted check is because we can't stub
        # out the date, since we're testing stubbing out
        # the date ;-)
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        # check we can parse the date
        dt1 = strptime(dt1, '%Y-%m-%d')
        # check the dt2 bit was as it should be
        compare(dt2, '2001-01-01')

        # What you need to do is replace the imported name:
        @replace('testfixtures.tests.sample1.today', test_date().today)
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        test_something()

    # if you have an embedded `today` as above, *and* you need to supply
    # a list of required dates, then it's often simplest just to
    # do a manual try-finally with a replacer:
    def test_import_and_obtain_with_lists(self):

        t = test_date(None)
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)

        from testfixtures import Replacer
        r = Replacer()
        r.replace('testfixtures.tests.sample1.today', t.today)
        try:
            compare(sample1.str_today_2(), '2002-01-01')
            compare(sample1.str_today_2(), '2002-01-02')
        finally:
            r.restore()

    @replace('datetime.date', test_date())
    def test_repr(self):
        from datetime import date
        compare(repr(date), "<class 'testfixtures.tdatetime.tdate'>")

    @replace('datetime.date', test_date(delta=2))
    def test_delta(self):
        from datetime import date
        compare(date.today(), d(2001, 1, 1))
        compare(date.today(), d(2001, 1, 3))
        compare(date.today(), d(2001, 1, 5))

    @replace('datetime.date', test_date(delta_type='weeks'))
    def test_delta_type(self):
        from datetime import date
        compare(date.today(), d(2001, 1, 1))
        compare(date.today(), d(2001, 1, 8))
        compare(date.today(), d(2001, 1, 22))

    @replace('datetime.date', test_date(None))
    def test_set(self):
        from datetime import date
        date.set(2001, 1, 2)
        compare(date.today(), d(2001, 1, 2))
        date.set(2002, 1, 1)
        compare(date.today(), d(2002, 1, 1))
        compare(date.today(), d(2002, 1, 3))

    @replace('datetime.date', test_date(None))
    def test_set_date_supplied(self):
        from datetime import date
        date.set(d(2001, 1, 2))
        compare(date.today(), d(2001, 1, 2))
        date.set(date(2001, 1, 3))
        compare(date.today(), d(2001, 1, 3))

    @replace('datetime.date', test_date(None))
    def test_set_kw(self):
        from datetime import date
        date.set(year=2001, month=1, day=2)
        compare(date.today(), d(2001, 1, 2))

    @replace('datetime.date', test_date(None))
    def test_add_kw(self, t):
        t.add(year=2002, month=1, day=1)
        from datetime import date
        compare(date.today(), d(2002, 1, 1))

    @replace('datetime.date', test_date(strict=True))
    def test_isinstance_strict_true(self):
        from datetime import date
        to_check = []
        to_check.append(date(1999, 1, 1))
        to_check.append(date.today())
        date.set(2001, 1, 2)
        to_check.append(date.today())
        date.add(2001, 1, 3)
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(date(2001, 1, 4))
        to_check.append(date.today())
        date.add(date(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(d(2001, 1, 4))
        to_check.append(date.today())
        date.add(d(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())

        for inst in to_check:
            self.failUnless(isinstance(inst, date), inst)
            self.failUnless(inst.__class__ is date, inst)
            self.failUnless(isinstance(inst, d), inst)
            self.failIf(inst.__class__ is d, inst)

    @replace('datetime.date', test_date())
    def test_isinstance_default(self):
        from datetime import date
        to_check = []
        to_check.append(date(1999, 1, 1))
        to_check.append(date.today())
        date.set(2001, 1, 2)
        to_check.append(date.today())
        date.add(2001, 1, 3)
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(date(2001, 1, 4))
        to_check.append(date.today())
        date.add(date(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(d(2001, 1, 4))
        to_check.append(date.today())
        date.add(d(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())

        for inst in to_check:
            self.failIf(isinstance(inst, date), inst)
            self.failIf(inst.__class__ is date, inst)
            self.failUnless(isinstance(inst, d), inst)
            self.failUnless(inst.__class__ is d, inst)
Esempio n. 21
0
 def test_membership_paid_after_arskrav(self):
     with Replace('user.models.date', test_date(2016, 12, 1)):
         self.balance.delete()
         self.assertTrue(self.user.payment.status['this_year'])
         self.assertFalse(self.user.payment.status['next_year'])
Esempio n. 22
0
 def test_tick_when_static(self):
     date = test_date(delta=0)
     compare(date.today(), expected=d(2001, 1, 1))
     date.tick(days=1)
     compare(date.today(), expected=d(2001, 1, 2))
Esempio n. 23
0
 def test_membership_after_arskrav(self):
     with Replace('user.models.date', test_date(2016, 12, 1)):
         self.balance.delete()
         self.user.proxy.actor.start_date = datetime(2016, 11, 30)
         self.assertFalse(self.user.payment._has_paid_after_arskrav())
Esempio n. 24
0
 def test_get_age(self):
     with Replace('user.models.date', test_date(2016, 1, 1, delta=0)):
         self.assertEqual(self.user.get_age(), 26)
Esempio n. 25
0
def test_is_last_of_month_now():
    with Replacer() as r:
        r.replace('util.datetime', test_date(2011, 11, 30))
        assert test_is_last_of_month_now()
Esempio n. 26
0
 def test_tick_when_dynamic(self):
     # hopefully not that common?
     date = test_date()
     compare(date.today(), expected=date(2001, 1, 1))
     date.tick(days=1)
     compare(date.today(), expected=date(2001, 1, 3))
Esempio n. 27
0
class TestDate(TestCase):
    @replace('datetime.date', test_date())
    def test_today(self):
        from datetime import date
        compare(date.today(), d(2001, 1, 1))
        compare(date.today(), d(2001, 1, 2))
        compare(date.today(), d(2001, 1, 4))

    @replace('datetime.date', test_date(2001, 2, 3))
    def test_today_supplied(self):
        from datetime import date
        compare(date.today(), d(2001, 2, 3))

    @replace('datetime.date', test_date(year=2001, month=2, day=3))
    def test_today_all_kw(self):
        from datetime import date
        compare(date.today(), d(2001, 2, 3))

    @replace('datetime.date', test_date(None))
    def test_today_sequence(self, t):
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)
        t.add(2002, 1, 3)
        from datetime import date
        compare(date.today(), d(2002, 1, 1))
        compare(date.today(), d(2002, 1, 2))
        compare(date.today(), d(2002, 1, 3))

    @replace('datetime.date', test_date(None))
    def test_today_requested_longer_than_supplied(self, t):
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)
        from datetime import date
        compare(date.today(), d(2002, 1, 1))
        compare(date.today(), d(2002, 1, 2))
        compare(date.today(), d(2002, 1, 3))
        compare(date.today(), d(2002, 1, 5))

    @replace('datetime.date', test_date(None))
    def test_add_date_supplied(self):
        from datetime import date
        date.add(d(2001, 1, 2))
        date.add(date(2001, 1, 3))
        compare(date.today(), d(2001, 1, 2))
        compare(date.today(), d(2001, 1, 3))

    @replace('datetime.date', test_date(strict=True))
    def test_call(self, t):
        compare(t(2002, 1, 2), d(2002, 1, 2))
        from datetime import date
        dt = date(2003, 2, 1)
        self.failIf(dt.__class__ is d)
        compare(dt, d(2003, 2, 1))

    def test_gotcha_import(self):
        @replace('datetime.date', test_date())
        def test_something():
            from datetime import date
            compare(date.today(), d(2001, 1, 1))
            compare(sample1.str_today_1(), '2001-01-02')

        with ShouldRaise(AssertionError) as s:
            test_something()
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        dt1 = strptime(dt1, '%Y-%m-%d')
        compare(dt2, '2001-01-02')

        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_1(), '2001-01-01')

        test_something()

    def test_gotcha_import_and_obtain(self):
        @replace('testfixtures.tests.sample1.date', test_date())
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        with ShouldRaise(AssertionError) as s:
            test_something()
        j, dt1, j, dt2, j = s.raised.args[0].split("'")
        dt1 = strptime(dt1, '%Y-%m-%d')
        compare(dt2, '2001-01-01')

        @replace('testfixtures.tests.sample1.today', test_date().today)
        def test_something():
            compare(sample1.str_today_2(), '2001-01-01')

        test_something()

    def test_import_and_obtain_with_lists(self):
        t = test_date(None)
        t.add(2002, 1, 1)
        t.add(2002, 1, 2)
        from testfixtures import Replacer
        r = Replacer()
        r.replace('testfixtures.tests.sample1.today', t.today)
        try:
            compare(sample1.str_today_2(), '2002-01-01')
            compare(sample1.str_today_2(), '2002-01-02')
        finally:
            r.restore()

    @replace('datetime.date', test_date())
    def test_repr(self):
        from datetime import date
        compare(repr(date), "<class 'testfixtures.tdatetime.tdate'>")

    @replace('datetime.date', test_date(delta=2))
    def test_delta(self):
        from datetime import date
        compare(date.today(), d(2001, 1, 1))
        compare(date.today(), d(2001, 1, 3))
        compare(date.today(), d(2001, 1, 5))

    @replace('datetime.date', test_date(delta_type='weeks'))
    def test_delta_type(self):
        from datetime import date
        compare(date.today(), d(2001, 1, 1))
        compare(date.today(), d(2001, 1, 8))
        compare(date.today(), d(2001, 1, 22))

    @replace('datetime.date', test_date(None))
    def test_set(self):
        from datetime import date
        date.set(2001, 1, 2)
        compare(date.today(), d(2001, 1, 2))
        date.set(2002, 1, 1)
        compare(date.today(), d(2002, 1, 1))
        compare(date.today(), d(2002, 1, 3))

    @replace('datetime.date', test_date(None))
    def test_set_date_supplied(self):
        from datetime import date
        date.set(d(2001, 1, 2))
        compare(date.today(), d(2001, 1, 2))
        date.set(date(2001, 1, 3))
        compare(date.today(), d(2001, 1, 3))

    @replace('datetime.date', test_date(None))
    def test_set_kw(self):
        from datetime import date
        date.set(year=2001, month=1, day=2)
        compare(date.today(), d(2001, 1, 2))

    @replace('datetime.date', test_date(None))
    def test_add_kw(self, t):
        t.add(year=2002, month=1, day=1)
        from datetime import date
        compare(date.today(), d(2002, 1, 1))

    @replace('datetime.date', test_date(strict=True))
    def test_isinstance_strict_true(self):
        from datetime import date
        to_check = []
        to_check.append(date(1999, 1, 1))
        to_check.append(date.today())
        date.set(2001, 1, 2)
        to_check.append(date.today())
        date.add(2001, 1, 3)
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(date(2001, 1, 4))
        to_check.append(date.today())
        date.add(date(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(d(2001, 1, 4))
        to_check.append(date.today())
        date.add(d(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())
        for inst in to_check:
            self.failUnless(isinstance(inst, date), inst)
            self.failUnless(inst.__class__ is date, inst)
            self.failUnless(isinstance(inst, d), inst)
            self.failIf(inst.__class__ is d, inst)

    @replace('datetime.date', test_date())
    def test_isinstance_default(self):
        from datetime import date
        to_check = []
        to_check.append(date(1999, 1, 1))
        to_check.append(date.today())
        date.set(2001, 1, 2)
        to_check.append(date.today())
        date.add(2001, 1, 3)
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(date(2001, 1, 4))
        to_check.append(date.today())
        date.add(date(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())
        date.set(d(2001, 1, 4))
        to_check.append(date.today())
        date.add(d(2001, 1, 5))
        to_check.append(date.today())
        to_check.append(date.today())
        for inst in to_check:
            self.failIf(isinstance(inst, date), inst)
            self.failIf(inst.__class__ is date, inst)
            self.failUnless(isinstance(inst, d), inst)
            self.failUnless(inst.__class__ is d, inst)
Esempio n. 28
0
 def test_membership_after_arskrav(self):
     with Replace('focus.abstractions.member.date', test_date(date.today().year, 12, 1)):
         self.balance.delete()
         self.user.proxy.actor.start_date = datetime(date.today().year, 11, 30)
         self.assertFalse(self.user.payment._has_paid_after_arskrav())
Esempio n. 29
0
 def test_instantiate_with_date(self):
     from datetime import date
     t = test_date(date(2002, 1, 1))
     compare(t.today(), d(2002, 1, 1))