We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69aca7 commit 4df0986Copy full SHA for 4df0986
geospaas/tests.py
@@ -7,14 +7,6 @@
7
8
class TestUtils(TestCase):
9
10
- def test_validate_uri_opendap_does_not_exist(self):
11
- uri = 'http://www.ifremer.fr/opendap/cerdap1/globcurrent/' \
12
- 'v2.0/global_012_deg/geostrophic/2014/001/' \
13
- '20140101000000-GLOBCURRENT-L4-CURgeo_0m-ALT_OI-v02.0-fv01.0.nc.tull'
14
- with self.assertRaises(OSError) as cm:
15
- utils.validate_uri(uri)
16
- self.assertEqual('NetCDF: file not found', cm.exception.args[1])
17
-
18
@patch('geospaas.utils.utils.os.path.isfile')
19
def test_validate_uri_local(self, mock_isfile):
20
mock_isfile.return_value = True
0 commit comments