Changed the test directory to tests.

This commit is contained in:
winhamwr
2009-12-21 23:37:18 +08:00
committed by Michael Jones
parent 7088e20e47
commit 5c537e244d
6 changed files with 10 additions and 4 deletions
+10 -4
View File
@@ -11,6 +11,12 @@ except ImportError:
from setuptools import setup, find_packages, Command
import sphinxtogithub
from sphinxtogithub.tests import (
filehandler,
directoryhandler,
replacer,
renamer
)
class RunTests(Command):
description = "Run the sphinxtogithub test suite."
@@ -25,10 +31,10 @@ class RunTests(Command):
def run(self):
suites = [
sphinxtogithub.test.filehandler.testSuite(),
sphinxtogithub.test.directoryhandler.testSuite(),
sphinxtogithub.test.replacer.testSuite(),
sphinxtogithub.test.renamer.testSuite(),
filehandler.testSuite(),
directoryhandler.testSuite(),
replacer.testSuite(),
renamer.testSuite(),
]
suite = unittest.TestSuite(suites)