Explorar el Código

Skip test_readme_5() if web query fails.

tags/v0.2
Ben Kurtovic hace 12 años
padre
commit
5ca6f6c755
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      tests/test_docs.py

+ 4
- 1
tests/test_docs.py Ver fichero

@@ -113,7 +113,10 @@ class TestDocs(unittest.TestCase):
title = "Test"
data = {"action": "query", "prop": "revisions", "rvlimit": 1,
"rvprop": "content", "format": "json", "titles": title}
raw = urllib.urlopen(url1, urllib.urlencode(data)).read()
try:
raw = urllib.urlopen(url1, urllib.urlencode(data)).read()
except IOError:
self.skipTest("cannot continue because of unsuccessful web call")
res = json.loads(raw)
text = res["query"]["pages"].values()[0]["revisions"][0]["*"]
expected = urllib.urlopen(url2.format(title)).read().decode("utf8")


Cargando…
Cancelar
Guardar