summaryrefslogtreecommitdiff
path: root/tests/test_install_lib.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-07-22 12:50:05 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2010-07-22 12:50:05 +0000
commit07be936471d1459a64a755dc90a53121a8ca41e9 (patch)
treeb0006ca9f93d98c5246224cd42692528e4ee20d4 /tests/test_install_lib.py
parentb97dbcf42d529ab4dfb2896cef8c0d53960595d7 (diff)
downloadpython-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.py17
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()