11 lines
222 B
Python
11 lines
222 B
Python
try:
|
|
from twisted.trial import unittest
|
|
except ImportError:
|
|
from nose import SkipTest
|
|
raise SkipTest('twisted not available; skipping')
|
|
|
|
class TestTwisted(unittest.TestCase):
|
|
|
|
def test(self):
|
|
pass
|
|
|