sprockets.handlers.heartbeat/tests.py
2014-10-13 11:16:28 -04:00

13 lines
No EOL
193 B
Python

"""
Tests for the sprockets.handlers.heartbeat package
"""
import mock
try:
import unittest2 as unittest
except ImportError:
import unittest
class MyTest(unittest.TestCase):
pass