mirror of
https://github.com/sprockets/sprockets.handlers.heartbeat.git
synced 2024-11-25 11:19:54 +00:00
13 lines
193 B
Python
13 lines
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
|