diff options
| author | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-07-07 12:25:37 -0700 |
|---|---|---|
| committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-07-07 12:25:37 -0700 |
| commit | bfd4bf6118d69a70926982c602d411dc6f9ab1d4 (patch) | |
| tree | e85e2da81e4a195983aed15532886bcee43e4416 /tests/test_python33_bdist_egg.py | |
| parent | 115c62e6a9a9167633eff93ef0f1a355505a0e5d (diff) | |
| download | python-setuptools-git-bfd4bf6118d69a70926982c602d411dc6f9ab1d4.tar.gz | |
test_python33_bdist_egg.py: Check return value of bdist_egg command
--HG--
branch : distribute
extra : rebase_source : 1f6c2ebfe44bdb09ee48f49f2cea94edf933e540
Diffstat (limited to 'tests/test_python33_bdist_egg.py')
| -rw-r--r-- | tests/test_python33_bdist_egg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_python33_bdist_egg.py b/tests/test_python33_bdist_egg.py index 58d99796..972d01e7 100644 --- a/tests/test_python33_bdist_egg.py +++ b/tests/test_python33_bdist_egg.py @@ -18,7 +18,7 @@ class TestPython33BdistEgg(unittest.TestCase): def test_build_egg(self): os.chdir(os.path.join(CURDIR, 'python3.3_bdist_egg_test')) - _python_cmd("setup.py", "bdist_egg") + self.assertTrue(_python_cmd("setup.py", "bdist_egg")) if __name__ == '__main__': |
