summaryrefslogtreecommitdiff
path: root/tests/test_proxy.py
diff options
context:
space:
mode:
authorMatthew Robben <mattr@dropbox.com>2015-01-16 14:36:36 -0800
committerMatthew Robben <mattr@dropbox.com>2015-01-16 14:36:36 -0800
commitd705a0524606c7b9b11f935de5a69d173c61ec0d (patch)
tree9c20e7d3e70982c07866ca0bc01ce233a90d9525 /tests/test_proxy.py
downloadpaste-git-d705a0524606c7b9b11f935de5a69d173c61ec0d.tar.gz
Fix bad reference to iterator variable
Diffstat (limited to 'tests/test_proxy.py')
-rw-r--r--tests/test_proxy.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_proxy.py b/tests/test_proxy.py
new file mode 100644
index 0000000..36d16b5
--- /dev/null
+++ b/tests/test_proxy.py
@@ -0,0 +1,12 @@
+from paste import proxy
+from paste.fixture import TestApp
+
+def test_paste_website():
+ # Not the most robust test...
+ # need to test things like POSTing to pages, and getting from pages
+ # that don't set content-length.
+ app = proxy.Proxy('http://pythonpaste.org')
+ app = TestApp(app)
+ res = app.get('/')
+ assert 'documentation' in res
+