12 lines
198 B
Python
12 lines
198 B
Python
|
|
import datetime
|
|
|
|
from . import TestCase
|
|
from rattail.pyramid import helpers
|
|
|
|
|
|
class HelpersTests(TestCase):
|
|
|
|
def test_pretty_date(self):
|
|
helpers.pretty_date(datetime.date(2013, 6, 19))
|