blob: c8c342a10cef2f24a957dd3d4c45416aae6a0741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
try:
from twisted.trial import unittest2 as unittest
except ImportError:
from nose import SkipTest
raise SkipTest('twisted not available; skipping')
class TestTwisted(unittest.TestCase):
def test(self):
pass
|