summaryrefslogtreecommitdiffstats
path: root/proxy/code/scripts
diff options
context:
space:
mode:
authorMike McCune <mmccune@gibson.pdx.redhat.com>2009-07-10 15:07:48 -0700
committerMike McCune <mmccune@gibson.pdx.redhat.com>2009-07-10 15:07:48 -0700
commit36389f71dc32df70c6c458afd3e9bd5964746740 (patch)
tree1f6819198962916919393d8af42a833fa9833b9b /proxy/code/scripts
parente84cc16f4c8c44b7ada26b27d55f66dfa3df79f4 (diff)
downloadcandlepin-36389f71dc32df70c6c458afd3e9bd5964746740.tar.gz
candlepin-36389f71dc32df70c6c458afd3e9bd5964746740.tar.xz
candlepin-36389f71dc32df70c6c458afd3e9bd5964746740.zip
more better xml annotations and making BaseApi more generic
Diffstat (limited to 'proxy/code/scripts')
-rwxr-xr-xproxy/code/scripts/test-connection.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/proxy/code/scripts/test-connection.py b/proxy/code/scripts/test-connection.py
index 259ba98..9cd844b 100755
--- a/proxy/code/scripts/test-connection.py
+++ b/proxy/code/scripts/test-connection.py
@@ -35,3 +35,8 @@ response = conn.getresponse()
print response.status, response.reason
rsp = response.read()
print(rsp)
+
+response = urllib.urlopen('http://localhost:8080/candlepin/consumer/list')
+rsp = response.read()
+print(rsp)
+