diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-07-22 12:50:05 +0000 |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-07-22 12:50:05 +0000 |
| commit | 07be936471d1459a64a755dc90a53121a8ca41e9 (patch) | |
| tree | b0006ca9f93d98c5246224cd42692528e4ee20d4 /tests/test_install_lib.py | |
| parent | b97dbcf42d529ab4dfb2896cef8c0d53960595d7 (diff) | |
| download | python-setuptools-git-07be936471d1459a64a755dc90a53121a8ca41e9.tar.gz | |
reverted distutils its 3.1 state. All new work is now happening in disutils2, and distutils is now feature-frozen.
Diffstat (limited to 'tests/test_install_lib.py')
| -rw-r--r-- | tests/test_install_lib.py | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/tests/test_install_lib.py b/tests/test_install_lib.py index 13d27aba..99a6d906 100644 --- a/tests/test_install_lib.py +++ b/tests/test_install_lib.py @@ -1,6 +1,6 @@ """Tests for distutils.command.install_data.""" -import os import sys +import os import unittest from distutils.command.install_lib import install_lib @@ -31,7 +31,9 @@ class InstallLibTestCase(support.TempdirManager, cmd.finalize_options() self.assertEquals(cmd.optimize, 2) - def _setup_byte_compile(self): + @unittest.skipUnless(not sys.dont_write_bytecode, + 'byte-compile not supported') + def test_byte_compile(self): pkg_dir, dist = self.create_dist() cmd = install_lib(dist) cmd.compile = cmd.optimize = 1 @@ -39,15 +41,8 @@ class InstallLibTestCase(support.TempdirManager, f = os.path.join(pkg_dir, 'foo.py') self.write_file(f, '# python file') cmd.byte_compile([f]) - return pkg_dir - - @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile not enabled') - def test_byte_compile(self): - pkg_dir = self._setup_byte_compile() - if sys.flags.optimize < 1: - self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc'))) - else: - self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo'))) + self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc'))) + self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo'))) def test_get_outputs(self): pkg_dir, dist = self.create_dist() |
