コード例 #1
0
def test_timesince():
    month_ago = datetime.now() - timedelta(days=30)
    assert helpers.timesince(month_ago) == u'1 month ago'
    assert helpers.timesince(None) == u''
コード例 #2
0
ファイル: test_helpers.py プロジェクト: MayankR/addons-server
def test_timesince():
    month_ago = datetime.now() - timedelta(days=30)
    eq_(helpers.timesince(month_ago), u'1 month ago')
    eq_(helpers.timesince(None), u'')
コード例 #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'')
コード例 #4
0
def test_timesince():
    month_ago = datetime.now() - timedelta(days=30)
    assert helpers.timesince(month_ago) == u'1 month ago'
    assert helpers.timesince(None) == u''