Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: third_party/twisted_8_1/twisted/test/test_import.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/twisted_8_1/twisted/test/test_import.py
diff --git a/third_party/twisted_8_1/twisted/test/test_import.py b/third_party/twisted_8_1/twisted/test/test_import.py
deleted file mode 100644
index 3a417f7220a09e73f427d3463a61bdb76dad9aaa..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/test/test_import.py
+++ /dev/null
@@ -1,92 +0,0 @@
-
-# Copyright (c) 2001-2004 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
-
- def test_test(self):
- import os, sys
- oldargv = sys.argv
- sys.argv = sys.argv[:1]
- try:
- tests = os.listdir(os.path.dirname(__file__))
- for f in tests:
- if f.startswith('test_') and f.endswith('.py'):
- __import__('twisted.test.%s' % f[:-3])
- finally:
- sys.argv = oldargv
-
-testCases = [AtLeastImportTestCase]
« no previous file with comments | « third_party/twisted_8_1/twisted/test/test_ident.py ('k') | third_party/twisted_8_1/twisted/test/test_internet.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698