sprockets.handlers.heartbeat/tests.py

13 lines
193 B
Python
Raw Normal View History

2014-10-13 15:16:28 +00:00
"""
Tests for the sprockets.handlers.heartbeat package
"""
import mock
try:
import unittest2 as unittest
except ImportError:
import unittest
class MyTest(unittest.TestCase):
pass