From a787b51d682a9d7802935ee993e587d67e4eaf96 Mon Sep 17 00:00:00 2001 From: Graham Higgins Date: Wed, 25 Jan 2012 04:59:54 +0000 Subject: Fix to error condition reported in issue206 --- test/test_n3.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'test/test_n3.py') diff --git a/test/test_n3.py b/test/test_n3.py index 2fa54af1..c419acf4 100644 --- a/test/test_n3.py +++ b/test/test_n3.py @@ -60,6 +60,7 @@ n3:context a rdf:Property; rdfs:domain n3:statement; import unittest +from urllib2 import URLError from rdflib.graph import Graph, ConjunctiveGraph @@ -160,7 +161,11 @@ foo-bar:Ex foo-bar:name "Test" . """ def testParse(self): g = ConjunctiveGraph() - g.parse("http://groups.csail.mit.edu/dig/2005/09/rein/examples/troop42-policy.n3", format="n3") + try: + g.parse("http://groups.csail.mit.edu/dig/2005/09/rein/examples/troop42-policy.n3", format="n3") + except URLError: + from nose import SkipTest + raise SkipTest('No network to retrieve the information, skipping test') cases = ['no quotes', "single ' quote", -- cgit v1.2.1