Add test for packaging.util.set_platform (#13974).

Patch by Tshepang Lekhonkhobe.
This commit is contained in:
Éric Araujo 2012-02-16 19:32:17 +01:00
parent 4aec77617f
commit e8c5fdba30
1 changed files with 5 additions and 0 deletions

View File

@ -173,6 +173,11 @@ class UtilTestCase(support.EnvironRestorer,
sys.stdout = self.old_stdout
sys.stderr = self.old_stderr
def test_set_platform(self):
self.addCleanup(util.set_platform, util.get_platform())
util.set_platform("fake")
self.assertEqual("fake", util.get_platform())
def test_convert_path(self):
# linux/mac
os.sep = '/'