Rename 'command' to 'distutilscmd'

This commit is contained in:
Jonathan Lange
2011-02-14 14:53:41 +00:00
parent 1df39342d0
commit 16d7709f34
4 changed files with 8 additions and 8 deletions

View File

@@ -32,6 +32,9 @@ from testtools.helpers import (
from testtools.matchers import ( from testtools.matchers import (
Matcher, Matcher,
) )
# Shut up, pyflakes. We are importing for documentation, not for namespacing.
Matcher
from testtools.runtest import ( from testtools.runtest import (
MultipleExceptions, MultipleExceptions,
RunTest, RunTest,
@@ -58,9 +61,6 @@ from testtools.testsuite import (
ConcurrentTestSuite, ConcurrentTestSuite,
iterate_tests, iterate_tests,
) )
from testtools.command import (
TestCommand
)
# same format as sys.version_info: "A tuple containing the five components of # same format as sys.version_info: "A tuple containing the five components of
# the version number: major, minor, micro, releaselevel, and serial. All # the version number: major, minor, micro, releaselevel, and serial. All

View File

@@ -7,11 +7,11 @@ import unittest
def test_suite(): def test_suite():
from testtools.tests import ( from testtools.tests import (
test_command,
test_compat, test_compat,
test_content, test_content,
test_content_type, test_content_type,
test_deferredruntest, test_deferredruntest,
test_distutilscmd,
test_fixturesupport, test_fixturesupport,
test_helpers, test_helpers,
test_matchers, test_matchers,
@@ -19,23 +19,23 @@ def test_suite():
test_run, test_run,
test_runtest, test_runtest,
test_spinner, test_spinner,
test_testtools,
test_testresult, test_testresult,
test_testsuite, test_testsuite,
test_testtools,
) )
modules = [ modules = [
test_command,
test_compat, test_compat,
test_content, test_content,
test_content_type, test_content_type,
test_deferredruntest, test_deferredruntest,
test_distutilscmd,
test_fixturesupport, test_fixturesupport,
test_helpers, test_helpers,
test_matchers, test_matchers,
test_monkey, test_monkey,
test_run, test_run,
test_spinner,
test_runtest, test_runtest,
test_spinner,
test_testresult, test_testresult,
test_testsuite, test_testsuite,
test_testtools, test_testtools,

View File

@@ -10,7 +10,7 @@ StringIO = try_imports(['StringIO.StringIO', 'io.StringIO'])
import testtools import testtools
from testtools import TestCase from testtools import TestCase
from testtools.command import TestCommand from testtools.distutilscmd import TestCommand
if fixtures: if fixtures: