mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
fixed the test name
This commit is contained in:
parent
cadaf551e0
commit
6dd6b619a8
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
"""Tests for distutils.archive_util."""
|
"""Tests for distutils.archive_util."""
|
||||||
__revision__ = "$Id:$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import os
|
import os
|
||||||
|
@ -40,7 +40,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
|
||||||
self.assert_(os.path.exists(tarball))
|
self.assert_(os.path.exists(tarball))
|
||||||
|
|
||||||
@unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run')
|
@unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run')
|
||||||
def test_make_tarball(self):
|
def test_make_zipfile(self):
|
||||||
# creating something to tar
|
# creating something to tar
|
||||||
tmpdir = self.mkdtemp()
|
tmpdir = self.mkdtemp()
|
||||||
self.write_file([tmpdir, 'file1'], 'xxx')
|
self.write_file([tmpdir, 'file1'], 'xxx')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue