| Index: tools/telemetry/third_party/modulegraph/modulegraph_tests/test_explicit_packages.py
|
| diff --git a/tools/telemetry/third_party/modulegraph/modulegraph_tests/test_explicit_packages.py b/tools/telemetry/third_party/modulegraph/modulegraph_tests/test_explicit_packages.py
|
| deleted file mode 100644
|
| index a964e4f48c4c3d296efe4a7fa2568e3ee7c92021..0000000000000000000000000000000000000000
|
| --- a/tools/telemetry/third_party/modulegraph/modulegraph_tests/test_explicit_packages.py
|
| +++ /dev/null
|
| @@ -1,51 +0,0 @@
|
| -from __future__ import absolute_import
|
| -import unittest
|
| -
|
| -import os, shutil, sys
|
| -
|
| -from modulegraph import find_modules
|
| -from modulegraph import modulegraph
|
| -
|
| -
|
| -class PackagesTestCase (unittest.TestCase):
|
| - if not hasattr(unittest.TestCase, 'assertIsInstance'):
|
| - def assertIsInstance(self, object, types, message=None):
|
| - self.assertTrue(isinstance(object, types),
|
| - message or '%r is not an instance of %r'%(object, types))
|
| -
|
| - def testIncludePackage(self):
|
| - root = os.path.join(
|
| - os.path.dirname(os.path.abspath(__file__)),
|
| - 'testpkg-packages')
|
| -
|
| - mf = find_modules.find_modules(
|
| - path=[root]+sys.path,
|
| - scripts=[os.path.join(root, "main_script.py")],
|
| - packages=['pkg'],
|
| - debug=1)
|
| -
|
| - node = mf.findNode('pkg')
|
| - self.assertIsInstance(node, modulegraph.Package)
|
| -
|
| - node = mf.findNode('pkg.sub3')
|
| - self.assertIsInstance(node, modulegraph.SourceModule)
|
| -
|
| - def testIncludePackageWithExclude(self):
|
| - root = os.path.join(
|
| - os.path.dirname(os.path.abspath(__file__)),
|
| - 'testpkg-packages')
|
| -
|
| - mf = find_modules.find_modules(
|
| - path=[root]+sys.path,
|
| - scripts=[os.path.join(root, "main_script.py")],
|
| - packages=['pkg'],
|
| - excludes=['pkg.sub3'])
|
| -
|
| - node = mf.findNode('pkg')
|
| - self.assertIsInstance(node, modulegraph.Package)
|
| -
|
| - node = mf.findNode('pkg.sub3')
|
| - self.assertIsInstance(node, modulegraph.ExcludedModule)
|
| -
|
| -if __name__ == '__main__':
|
| - unittest.main()
|
|
|