Exemplo n.º 1
0
def test_timesince():
    month_ago = datetime.now() - timedelta(days=30)
    eq_(helpers.timesince(month_ago), u'1 month ago')
    eq_(helpers.timesince(None), u'')
Exemplo n.º 2
0
 def render_created(self, row):
     return timesince(row.created)
Exemplo n.º 3
0
def test_timesince():
    month_ago = datetime.now() - timedelta(days=30)
    eq_(helpers.timesince(month_ago), u'1 month ago')
    eq_(helpers.timesince(None), u'')
Exemplo n.º 4
0
 def render_created(self, row):
     return timesince(row.created)