| Server IP : 61.19.30.66 / Your IP : 216.73.216.15 Web Server : Apache/2.2.22 (Ubuntu) System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 User : www-data ( 33) PHP Version : 5.3.10-1ubuntu3.48 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/pyshared/twisted/test/ |
Upload File : |
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
from twisted.trial import unittest
from twisted.python.runtime import platformType
class AtLeastImportTestCase(unittest.TestCase):
"""I test that there are no syntax errors which will not allow importing.
"""
failureException = ImportError
def test_misc(self):
"""Test importing other misc. modules
"""
from twisted import copyright
def test_persisted(self):
"""Test importing persisted
"""
from twisted.persisted import dirdbm
from twisted.persisted import styles
def test_internet(self):
"""Test importing internet
"""
from twisted.internet import tcp
from twisted.internet import main
# from twisted.internet import ssl
from twisted.internet import abstract
from twisted.internet import udp
from twisted.internet import protocol
from twisted.internet import defer
def test_unix(self):
"""internet modules for unix."""
from twisted.internet import stdio
from twisted.internet import process
from twisted.internet import unix
if platformType != "posix":
test_unix.skip = "UNIX-only modules"
def test_spread(self):
"""Test importing spreadables
"""
from twisted.spread import pb
from twisted.spread import jelly
from twisted.spread import banana
from twisted.spread import flavors
def test_twistedPython(self):
"""Test importing twisted.python
"""
from twisted.python import hook
from twisted.python import log
from twisted.python import reflect
# from twisted.python import threadable
# from twisted.python import threadpool
from twisted.python import usage
from twisted.python import otp
def test_protocols(self):
"""Test importing protocols
"""
from twisted.protocols import basic
from twisted.protocols import ftp
from twisted.protocols import telnet
from twisted.protocols import policies
def test_enterprise(self):
from twisted.enterprise import adbapi
from twisted.enterprise import reflector
from twisted.enterprise import sqlreflector
from twisted.enterprise import row