aboutsummaryrefslogtreecommitdiffstats
path: root/tests/install_test.py
diff options
context:
space:
mode:
authortarek <none@none>2009-08-05 22:17:36 +0200
committertarek <none@none>2009-08-05 22:17:36 +0200
commit0497f929d4e5868d987a1a139a75e5e1fcfcdba0 (patch)
treeb5012b6ecd1f7eda8a874c4a420307bc852493b9 /tests/install_test.py
parentec0118e53d7a36111e45c0f18efebebab4184872 (diff)
downloadexternal_python_setuptools-0497f929d4e5868d987a1a139a75e5e1fcfcdba0.tar.gz
external_python_setuptools-0497f929d4e5868d987a1a139a75e5e1fcfcdba0.tar.bz2
external_python_setuptools-0497f929d4e5868d987a1a139a75e5e1fcfcdba0.zip
bootstraping.py -> bootstrapping.py
--HG-- branch : distribute extra : rebase_source : b54a39a7e7f17f3275d62d29da37de0776fb7ee3
Diffstat (limited to 'tests/install_test.py')
-rw-r--r--tests/install_test.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/install_test.py b/tests/install_test.py
index 58b4ebc1..e507a39b 100644
--- a/tests/install_test.py
+++ b/tests/install_test.py
@@ -2,8 +2,8 @@ import urllib2
import sys
import os
-if os.path.exists('bootstraping.py'):
- print 'bootstraping.py exists in the current dir, aborting'
+if os.path.exists('bootstrapping.py'):
+ print 'bootstrapping.py exists in the current dir, aborting'
sys.exit(2)
print '**** Starting Test'
@@ -14,13 +14,13 @@ if is_jython:
import subprocess
print 'Downloading bootstrap'
-file = urllib2.urlopen('http://nightly.ziade.org/bootstraping.py')
-f = open('bootstraping.py', 'w')
+file = urllib2.urlopen('http://nightly.ziade.org/bootstrapping.py')
+f = open('bootstrapping.py', 'w')
f.write(file.read())
f.close()
# running it
-args = [sys.executable] + ['bootstraping.py']
+args = [sys.executable] + ['bootstrapping.py']
if is_jython:
res = subprocess.call(args)
else:
@@ -28,7 +28,7 @@ else:
if res != 0:
print '**** Test failed, please send me the output at tarek@ziade.org'
- os.remove('bootstraping.py')
+ os.remove('bootstrapping.py')
sys.exit(2)
# now checking if Distribute is installed
@@ -71,5 +71,5 @@ try:
finally:
if os.path.exists(script_name):
os.remove(script_name)
- os.remove('bootstraping.py')
+ os.remove('bootstrapping.py')