mirror of
https://github.com/sprockets/cookiecutter-sprockets.git
synced 2024-11-23 19:29:52 +00:00
14 lines
205 B
Python
14 lines
205 B
Python
|
"""
|
||
|
Tests for the sprockets.{{cookiecutter.project_name}} package
|
||
|
|
||
|
"""
|
||
|
import mock
|
||
|
try:
|
||
|
import unittest2 as unittest
|
||
|
except ImportError:
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
class MyTest(unittest.TestCase):
|
||
|
pass
|