debian-python-redmine/tests/__init__.py

14 lines
203 B
Python

try:
import unittest2 as unittest
except ImportError:
import unittest
try:
from unittest import mock
except ImportError:
import mock
from redmine import Redmine
URL = 'http://foo.bar'