Browse Source

Give test directory a more reasonable name.

pull/2332/head
Eric V. Smith 14 years ago
parent
commit
714370fad1
  1. 0
      Lib/test/namespace_pkgs/module_and_namespace_package/a_test.py
  2. 0
      Lib/test/namespace_pkgs/module_and_namespace_package/a_test/empty
  3. 6
      Lib/test/test_namespace_pkgs.py
  4. 4
      Makefile.pre.in

0
Lib/test/namespace_pkgs/module_and_file/a_test.py → Lib/test/namespace_pkgs/module_and_namespace_package/a_test.py

0
Lib/test/namespace_pkgs/module_and_file/a_test/empty → Lib/test/namespace_pkgs/module_and_namespace_package/a_test/empty

6
Lib/test/test_namespace_pkgs.py

@ -276,10 +276,12 @@ class ZipWithMissingDirectory(NamespacePackageTest):
self.assertEqual(bar.two.attr, 'missing_directory foo two')
class ModuleAndFileInSameDir(NamespacePackageTest):
paths = ['module_and_file']
class ModuleAndNamespacePackageInSameDir(NamespacePackageTest):
paths = ['module_and_namespace_package']
def test_module_before_namespace_package(self):
# Make sure we find the module in preference to the
# namespace package.
import a_test
self.assertEqual(a_test.attr, 'in module')

4
Makefile.pre.in

@ -991,8 +991,8 @@ LIBSUBDIRS= tkinter tkinter/test tkinter/test/test_tkinter \
test/namespace_pkgs/project3 \
test/namespace_pkgs/project3/parent \
test/namespace_pkgs/project3/parent/child \
test/namespace_pkgs/module_and_file \
test/namespace_pkgs/module_and_file/a_test \
test/namespace_pkgs/module_and_namespace_package \
test/namespace_pkgs/module_and_namespace_package/a_test \
collections concurrent concurrent/futures encodings \
email email/mime test/test_email test/test_email/data \
html json test/json_tests http dbm xmlrpc \

Loading…
Cancel
Save